我想使用jQuery Validate插件的自定义验证方法
jQuery.validator.addMethod()
...但找不到将其与Element绑定的方法。
文档中的示例是这样的。
jQuery.validator.addMethod("domain", function(value, element) {
return this.optional(element) || /^http:\/\/mycorporatedomain.com/.test(value);
}, "Please specify the correct domain for your documents");
...但它没有告诉我"域"方法绑定到表单上的元素。