以下代码接受admin @ admin。如何使其无效。它应该接受admin@admin.com。所以基本上我需要域名才能接受这个值。
fields: {
txtEmail: {
validators: {
emailAddress: {
message: 'The email address is not valid'
}
}
}
}
答案 0 :(得分:0)
fields: {
email: {
validators: {
notEmpty: {
message: 'Địa chỉ email không được để trống.'
},
regexp: {
regexp: /^[\w,\\"]+([-+.\']\w+)*@(?:(?=[a-z,A-Z])\w+([-.]\w+)*\.\w+([-.]\w+)*$|(?![a-z,A-Z])((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$)/,
message: 'This value not valid.'
}
}
},
并在html中删除输入中的type =“ email”
<label for="email">Email<span style="color: red;"> *</span></label>
<input id="email" class="form-control form-control-lg font-weight-600" name="email" placeholder="Địa chỉ email" required="">
答案 1 :(得分:-1)
我总是使用这个功能,到目前为止对我来说是最好的
/*
* Validate Email
* @params element
* @return boolean false || true
*/
var validateEmail = function(element){
var email_regex = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i;
if( !email_regex.test( element ) ) {
return false;
} else{
return true;
}
};
现在使用你可以做这样的事情
validateEmail( $('#email_elem').val() )
编辑:很抱歉没有发布与BootstrapValidator相关的答案
所以对于bootstrapvalidator执行以下操作,
regexp: {
regexp: /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i,
message: 'Please enter correct email
}
你可以试试上面的正则表达式吗? &安培;看看它是否有效。 或试试这个
fields: {
email: {
validators: {
emailAddress: {
message: 'The value is not a valid email address'
},
regexp: {
regexp: '^[^@\\s]+@([^@\\s]+\\.)+[^@\\s]+$',
message: 'The value is not a valid email address'
}
}
}
}
编辑:创建这个工作小提琴请检查https://jsfiddle.net/yeoman/436rvcut/3/