我的目标是使用bootstrap验证器验证具有类名或Id的字段
这是示例代码:
HTML:
JS:
$('#myForm').bootstrapValidator({
fields : {
myFirstName : {
validators : {
notEmpty : {
message : 'required'
}
}
},myLastName : {
validators : {
notEmpty : {
message : 'required'
}
}
}
}
});
但我想要一个块来使用bootstrap验证器验证这两个元素
恩.
$('#myForm').bootstrapValidator({
fields : {
myClass : { // <-- this is not working but i want to validate those
// object with has 'myClass' class.
validators : {
notEmpty : {
message : 'required'
}
}
}
}
});
最佳答案
见http://bootstrapvalidator.com/settings/#field-selector
您可以使用selector而不是name来使用类名:
$('#myForm').bootstrapValidator({
fields: {
myClass: {
selector: '.myClass',validators: {
notEmpty: {
message: 'required'
}
}
},}
});