我正在使用一个jQuery 验证插件,它应该验证表单中的所有输入,但它停止在第一个。如果您单击第二个输入并将其留空 - 一切正常 - 它验证......
否则 - 不......
我找到了一些相同的答案 - 没有成功......
这是我写的例子
//
// jQuery Validate example script
//
// Prepared by David Cochran
//
// Free for your use -- No warranties, no guarantees!
//
$(document).ready(function(){
// Validate
// http://bassistance.de/jquery-plugins/jquery-plugin-validation/
// http://docs.jquery.com/Plugins/Validation/
// http://docs.jquery.com/Plugins/Validation/validate#toptions
$('.validate').validate({
highlight: function(element) {
$(element).parent().removeClass('has-success').addClass('has-error');
},
success: function(element) {
element.closest().removeClass('has-error').addClass('has-success');
}
});
}); // end document.ready`enter code here`
使用:
- 引导程序
- jQuery
- jQuery 验证