是否可以在bootstrapValidator中禁用错误消息?我在bootstrapValidator设置中搜索过但没有这样的选项。我希望根据bootstrapValidator的类显示和隐藏自定义消息。如何禁用显示的默认错误消息。?
答案 0 :(得分:0)
不确定为什么要这样做,因为您已经可以使用fields
选项在bootstrapValidator中指定自定义消息。以下是为fullName
和email
字段设置自定义消息的示例:
fields: {
fullName: {
validators: {
notEmpty: {
message: 'The full name is required and cannot be empty'
}
}
},
email: {
validators: {
notEmpty: {
message: 'The email address is required and cannot be empty'
},
emailAddress: {
message: 'The email address is not valid'
}
}
},
如果您确实要隐藏所有消息,可以使用container
选项:
container: '#messages',
然后您可以在HTML中隐藏该容器:
<div id="messages" class="hide"></div>