查看源码
elements: function() {
var validator = this,
rulesCache = {};
// select all valid inputs inside the form (no submit or reset buttons)
return $( this.currentForm )
.find( "input, select, textarea" )
.not( ":submit, :reset, :image, [disabled], [readonly]" )
.not( this.settings.ignore )
.filter( function() {
if ( !this.name && validator.settings.debug && window.console ) {
console.error( "%o has no name assigned", this );
}
// select only the first element for each name, and only those with rules specified
if ( this.name in rulesCache || !validator.objectLength( $( this ).rules() ) ) {
return false;
}
rulesCache[ this.name ] = true;
return true;
});
},
可以看到只校验”input, select, textarea”
不校验”:submit, :reset, :image, [disabled], [readonly]”
和ignore
而插件ignore的默认值为{ignore: “:hidden”}
可以初始化自定义
$.extend($.validator.defaults,{ignore:
"自定义样式"
});
版权声明:本文为pdy8023原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。