当前位置: 代码迷 >> JavaScript >> this.optional(element) 代表什么解决方案
  详细解决方案

this.optional(element) 代表什么解决方案

热度:678   发布时间:2013-01-07 10:02:24.0
this.optional(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");

this.optional(element) 代表什么
------解决方案--------------------
optional方法,用于表单位素值是否为空。
  相关解决方案