我正在使用jQuery Validation来验证表单,我想要做的就是这样……我想要设置它,如果选中复选框,那么编辑框的验证方式也不同,例如.
如果未选中该复选框,则应如何验证:
weight: { required: true,max: 50 }
如果选中它,应该如何验证它.
weight: { required: true,max: 100 }
有任何想法吗?
最佳答案
只要单击复选框,就可以使用Validate plugin’s built-in
原文链接:https://www.f2er.com/jquery/428669.htmlrules('add')
method动态更改规则.
jQuery的:
$(document).ready(function () {
// initialize the plugin
$('#myform').validate({
// other options,rules: {
// other rules,weight: {
required: true,max: 50 // initial value on load
}
}
});
// change the rule on checkBox and update displayed message dynamically
$('#check').on('change',function () {
if ($(this).is(':checked')) {
$('#weight').rules('add',{
max: 100
});
} else {
$('#weight').rules('add',{
max: 50
});
};
$('#weight.error').each(function () {
$(this).valid();
});
});
});
HTML: