我的javascript代码:
$(".category_form").bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
category_valid: {
validators: {
notEmpty: {
message: "This field is required",
}
}
},
category_name: {
validators: {
notEmpty: {
message: "This field is required",
}
}
},
}
});
HTML HERE with php: here is my html with php