本文介绍了thinkPHP5使用bootstrapvalidator进行异步验证邮箱的示例,分享给大家,具体如下:
js验证
message: 'This value is not valid',<a href="https://www.jb51.cc/tag/Feed/" target="_blank" class="keywords">Feed</a>backIcons: {
valid: 'glyphicon glyphicon-ok',invalid: 'glyphicon glyphicon-remove',validating: 'glyphicon glyphicon-refresh'
},live: 'disabled',//验证失败后,提交按钮仍然是可选状态
fields: {
email: {
message: '<a href="https://www.jb51.cc/tag/yonghuming/" target="_blank" class="keywords">用户名</a>验证失败',//默认
verbose: false,validators: {
notEmpty: {
message: '邮箱不能为空'
},emailAddress: {
message: '邮箱地址格式有误'
},remote: {
url: '/ajax_email',message:"此邮箱已经<a href="https://www.jb51.cc/tag/zhuce/" target="_blank" class="keywords">注册</a>",type: "post",dataType: 'json',data: {
//默认传递的就是输入框的值
},delay: 500,//延迟<a href="https://www.jb51.cc/tag/xiaoguo/" target="_blank" class="keywords">效果</a>
},}
},password: {
validators: {
notEmpty: {
message: '邮箱地址不能为空'
},stringLength: {
min: 6,max: 18,message: '<a href="https://www.jb51.cc/tag/yonghuming/" target="_blank" class="keywords">用户名</a>长度必须在6到18位之间'
},},password2: {
validators: {
notEmpty: {
message: '确认密码不能为空'
},identical: {
field: 'password',message: '两次密码必须一致'
}
}
},username:{
validators: {
notEmpty: {
message: '<a href="https://www.jb51.cc/tag/yonghuming/" target="_blank" class="keywords">用户名</a>不能为空'
},stringLength: {
min: 2,max: 8,message: '<a href="https://www.jb51.cc/tag/yonghuming/" target="_blank" class="keywords">用户名</a>长度必须在2到8位之间'
}
}
}
}
});
});
TP5处理
false,'message'=>'验证码不正确']);
}
js验证几个注意点
后台注意点
- 注意不是return而是echo
- 返回json格式 {'valid':true[,'message':'验证成功']}
参考链接:
原文链接:https://www.f2er.com/thinkphp/16648.html