BootstrapValidator を使用してメール入力ボックスを検証しています。問題なく動作しますが、特定の電子メール ドメイン "@test.com" が検証されないようにしたいのですが、どうすればよいですか?
コードは次のとおりです。
email: {
message: 'Your email must be in the format "example@domain.com"',
validators: {
notEmpty: {
message: 'Your email is required and cannot be empty'
},
emailAddress: {
message: 'The value is not a valid email address'
}
}
},