萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jquery驗證手機號碼、郵箱格式是否正確示例代碼

jquery驗證手機號碼、郵箱格式是否正確示例代碼

本文為大家介紹下使用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;
}

copyright © 萬盛學電腦網 all rights reserved