1. 程式人生 > >jquery同時驗證郵箱和手機號嗎

jquery同時驗證郵箱和手機號嗎

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="jquery-1.4.4.min.js" type="text/javascript"></script>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css">
</head>
<script>
function check(){
var email=$("#email").val() ;
if (email == "") {
$("#confirmMsg").html("<font color='red'>&nbsp;郵箱或手機不能為空!</font>"); 
$("#email").focus(); 
return false; 

if(isNaN(email)){
if (!$("#email").val().match(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/)) { 
$("#confirmMsg").html("<font color='red'>&nbsp;郵箱格式不正確!請重新輸入!</font>"); 
$("#email").focus(); 
return false; 
} else{
$("#confirmMsg").hide();
return true; 
}
}else{
if(!$("#email").val().match(/^1[3|4|5|8][0-9]\d{4,8}$/)){ 
$("#confirmMsg").html("<font color='red'>&nbsp;手機號碼格式不正確!請重新輸入!</font>"); 
$("#email").focus(); 
return false; 
} else{
$("#confirmMsg").hide();
return true; 
}

}
}
</script>
<body >
<div style="height:200px; width:200px; margin:0 auto;">
</div>
<div style="height:500px; width:500px; margin:0 auto;">
<input type="text" name="emailOrphone" id="email"><span id="confirmMsg">&nbsp;請填寫手機或者郵箱</span><br><br>
<button onclick="check()">驗證</button></div>  <!--這個層居中 -->
</body>
</html>