我正在使用 jQuery Validate 插件,无法让它依赖于另一个字段进行验证。下面的相同逻辑将验证正常选择,但不是多选。这是我的 jFiddle:这里
在小提琴中,我使用的是普通选择,但是当我将其更改为多选时,它会中断。寻找解决方案。谢谢。
jQuery:
$("#my_form").validate({
rules: {
'my_choice_name': {
required: {
depends: function (element) {
//this logic works (tested on another field name/value), just not on the multiple select field:
if ($('#my_alt_select_id').val() !== '3') {
return true;
} else {
return false;
}
}
}
}
}
});