我对chosen启用选项的验证:
SellerDropDownList: {
required: {
depends: function (element) {
return $("#SellerDropDownList").val() == "-1";
}
}
}
默认值为-1
,但它不起作用,当我点击提交按钮时;它通过验证,而所选的值为-1
。
答案 0 :(得分:0)
阅读文档时,required
无法按照您尝试使用它的方式运行。
我找到的一个选项是min
:
SellerDropDownList: {
min: 0
},
另一种可能的方法是定义this question下描述的自己的规则(“不等于”)。