如何使用jQuery Validation插件将自定义验证方法绑定到元素

时间:2014-09-25 16:01:32

标签: jquery jquery-validate

我想使用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");

...但它没有告诉我"域"方法绑定到表单上的元素。

0 个答案:

没有答案