我试图使用jQuery验证插件的自定义验证器。
但是,我不确定你应该如何将多个参数传递给验证方法?
我试过使用(2,3),花括号和组合,但我失败了。
但是,我不确定你应该如何将多个参数传递给验证方法?
我试过使用(2,3),花括号和组合,但我失败了。
$(document).ready(function() { jQuery.validator.addMethod("math",function(value,element,params) { return this.optional(element) || value == params[0] + params[1]; },jQuery.format("Please enter the correct value for {0} + {1}")); $("#form_register").validate({ debug: true,rules: { inputEl: { required: true,math: ???? } },messages: { inputEl: { required: "required",math: "Incorrect result" } } }); });
解决方法
@H_403_11@ Javascript数组:[value1,value2,value3]
所以你的代码可能是:
inputEl: { required: true,math: [2,3,4,5] }