用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - javascript代码库

// 手机格式检查

2015-09-09 作者: 中哥举报

[javascript]代码库

/*****************************************************************************1********************************************************************/
// 手机格式检查
function mobileLayoutCheck(){
	var mobile = document.getElementById("mobile").value;
	document.getElementById('mobileDiv').style.visibility = "visible";
	if (mobile != "") {
		var re = /^(((13[0-9])|(15([0-3]|[5-9]))|(17([0-3]|[5-9]))|(18[0,5-9]))\d{8})$/;
		var result = re.test(mobile);
		if (result) {
			return true;
		}else {
			document.getElementById('mobileDiv').className = "wrong";
			$("#mobileError").html("手机格式错误!");
			return false;
		}
	} else {
		document.getElementById('mobileDiv').className = "wrong";
		$("#mobileError").html("请填写手机!");
		return false;
	}
}
/***********************************************************************2**************************************************************/
// 手机检查
function mobileCheck() {
	var mobile = document.getElementById("mobile").value;
	document.getElementById('mobileDiv').style.visibility = "visible";
	if (mobile != "") {
		var re = /^(((13[0-9])|(15([0-3]|[5-9]))|(17([0-3]|[5-9]))|(18[0,5-9]))\d{8})$/;
		var result = re.test(mobile);
		if (result) {
			// 判断是否已注册
			$.ajax({
						type : "POST",
						url : contextpath + "shoppc/reg/findMobileInformation.do?mobile=" + mobile,
						success : function(response) {
							var result = $.parseJSON(response);
							if (result.code == "0106") {// 已绑定
								document.getElementById('mobileDiv').className = "wrong";
								$("#mobileError").html(result.msg);
								reg_checkMobile = false;
							} else if (result.code == "0109") {// 已发送验证码
								document.getElementById('mobileDiv').className = "yes";
								$("#mobileError").html(result.msg);
								reg_checkMobile = false;
							} else if (result.code == "0124") {// 已注册帐号
								document.getElementById('mobileDiv').className = "wrong";
								$("#mobileError").html(result.msg);
								reg_checkMobile = false;
							}else { // 未注册
								document.getElementById('mobileDiv').className = "yes";
								$("#mobileError").html(result.msg);
								reg_checkMobile = true;
							}
						}
					});
			// document.getElementById('mobileDiv').className = "yes";
			// $("#mobileError").html("格式正确!");
			// return true;
		} else {
			document.getElementById('mobileDiv').className = "wrong";
			$("#mobileError").html("手机格式错误!");
			reg_checkMobile = false;
		}
	} else {
		document.getElementById('mobileDiv').className = "wrong";
		$("#mobileError").html("请填写手机!");
		reg_checkMobile = false;
	}
}


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...