DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> jquery驗證手機號碼、郵箱格式是否正確示例代碼
jquery驗證手機號碼、郵箱格式是否正確示例代碼
編輯:JavaScript綜合知識     
本文為大家介紹下使用jquery驗證郵箱、驗證手機號碼,具體實現思路及代碼如下,感興趣的朋友可以學習下   復制代碼 代碼如下:


//jquery驗證郵箱
function checkSubmitEmail() {
if ($("#email").val() == "") {
//$("#confirmMsg").html("<font color='red'>郵箱地址不能為空!</font>");
alert("郵箱不能為空!")
$("#email").focus();
return false;
}
if (!$("#email").val().match(/^w+((-w+)|(.w+))*@[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z0-9]+$/)) {
alert("郵箱格式不正確");
//$("#confirmMsg").html("<font color='red'>郵箱格式不正確!請重新輸入!</font>");
$("#email").focus();
return false;
}
return true;
}

//jquery驗證手機號碼
function checkSubmitMobil() {
if ($("#mobile").val() == "") {
alert("手機號碼不能為空!");
//$("#moileMsg").html("<font color='red'>手機號碼不能為空!</font>");
$("#mobile").focus();
return false;
}

if (!$("#mobile").val().match(/^(((13[0-9]{1})|159|153)+d{8})$/)) {
alert("手機號碼格式不正確!");
//$("#moileMsg").html("<font color='red'>手機號碼格式不正確!請重新輸入!</font>");
$("#mobile").focus();
return false;
}
return true;
}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved