|
@@ -96,11 +96,11 @@ $(function () {
|
|
|
function blurFun(){
|
|
|
$('#username').blur(function(){
|
|
|
let nameRax = /^[a-zA-Z0-9_-]{6,32}$/;
|
|
|
- if(!$(this).val().trim()){
|
|
|
- $(this).val('请填写用户名').css({color:'#f00'})
|
|
|
- }else if(!nameRax.test($(this).val())){
|
|
|
- $(this).val('6-32位字母/数字/下划线').css({color:'#f00'})
|
|
|
- }
|
|
|
+// if(!$(this).val().trim()){
|
|
|
+// $(this).val('请填写用户名').css({color:'#f00'})
|
|
|
+// }else if(!nameRax.test($(this).val())){
|
|
|
+// $(this).val('1-32位字母/数字/汉字').css({color:'#f00'})
|
|
|
+// }
|
|
|
})
|
|
|
$('#userpassword').blur(function () {
|
|
|
var pass_pattern = /^[a-zA-Z\d_]{6,12}$/;
|
|
@@ -108,7 +108,7 @@ $(function () {
|
|
|
var tt = $('#userpassword2').val().trim();
|
|
|
if (!pass1|| !pass_pattern.test(pass1)) {
|
|
|
$(this).attr('type',"text")
|
|
|
- $(this).val('请输入6-12位数字母开头密码').css({color:'#f00'});
|
|
|
+ // $(this).val('请输入6-12位数字母开头密码').css({color:'#f00'});
|
|
|
return;
|
|
|
}else{
|
|
|
$(this).attr('type','password');
|