0

我正在使用 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;
                    }
                }
            }
        }
    }
});
4

1 回答 1

0

当有一个多选列表时,.val()是一个数组。

要查看是否检查了 X val,您需要使用indexOf().

if($('#my_alt_select_id').val().indexOf('3') == -1) 
于 2013-05-17T18:19:59.637 回答