在multiselect

时间:2019-06-04 09:43:04

标签: php jquery bootstrap-multiselect

我想限制用户在多重选择中只能选择两个值。这是我的代码

$(document).ready(function() {

          var last_valid_selection = null;

          $('#checkbox').change(function(event) {

            if ($(this).val().length > 2) {
alert("Only select two values");
              $(this).val(last_valid_selection);
            } 
			else {
              last_valid_selection = $(this).val();
            }
          });
        });

它工作正常,但仍然检查了第三个值。像这样

enter image description here

我希望在警报显示时也未选中此值

0 个答案:

没有答案