|
@@ -28,7 +28,7 @@ $(function () {
|
|
|
$(this).parent().removeClass('cheackeds_no').addClass('cheackeds');
|
|
|
$('.sub').attr('disabled', false);
|
|
|
$('.sub').css({
|
|
|
- background: '#F18101',
|
|
|
+ background: '#fe6e42',
|
|
|
border: 'none'
|
|
|
})
|
|
|
} else {
|
|
@@ -94,14 +94,10 @@ $(function () {
|
|
|
}
|
|
|
}
|
|
|
function blurFun(){
|
|
|
-
|
|
|
$('#username').blur(function(){
|
|
|
- let nameRax = /^[a-zA-Z0-9_-]{6,32}$/;
|
|
|
if(!$(this).val().trim()){
|
|
|
tipFun.call(this,true,'请填写用户名')
|
|
|
- }else if(!nameRax.test($(this).val())){
|
|
|
- tipFun.call(this,true,'请输入6-32位字母、数字、下划线')
|
|
|
- }else{
|
|
|
+ }else {
|
|
|
tipFun.call(this,false,'')
|
|
|
}
|
|
|
})
|
|
@@ -109,11 +105,12 @@ $(function () {
|
|
|
var pass_pattern = /^[a-zA-Z\d_]{6,12}$/;
|
|
|
var pass1 = $(this).val().trim();
|
|
|
var tt = $('#userpassword2').val().trim();
|
|
|
- if (!pass1|| !pass_pattern.test(pass1)) {
|
|
|
- tipFun.call(this,true,'请输入6-12位数字母开头密码')
|
|
|
- }else if(tt&&(pass1===tt)){
|
|
|
+ if (!pass1|| !(pass_pattern.test(pass1))) {
|
|
|
+ tipFun.call(this,true,'请输入6-12位数的密码')
|
|
|
+ }else if(pass1===tt){
|
|
|
tipFun.call($('#userpassword2'),false,'');
|
|
|
}else{
|
|
|
+ tipFun.call(this,false,'')
|
|
|
tipFun.call($('#userpassword2'),true,'两次密码不一致');
|
|
|
}
|
|
|
});
|
|
@@ -163,7 +160,7 @@ $(function () {
|
|
|
tipFun.call($('#userpassword2'),true,'两次密码不一致');
|
|
|
return;
|
|
|
};
|
|
|
- if(!user&&!usePhoto&&!password1&&!mobileCode){
|
|
|
+ if(!usePhoto&&!password1&&!mobileCode){
|
|
|
$('.Tips').text('请输入内容.');
|
|
|
$('.Tips').addClass('active');
|
|
|
return ;
|