本文為大家介紹下使用jquery驗證郵箱驗證手機號碼具體實現思路及代碼如下感興趣的朋友可以學習下
代碼如下
//jquery驗證郵箱
function checkSubmitEmail() {
if ($(#email)val() == ) {
//$(#confirmMsgl(<font color=red>郵箱地址不能為空!</font>);
alert(郵箱不能為空!)
$(#email)focus();
return false;
}
if (!$(#email)val()match(/^\w+((\w+)|(\\w+))*\@[AZaz]+((\|)[AZaz]+)*\[AZaz]+$/)) {
alert(郵箱格式不正確);
//$(#confirmMsgl(<font color=red>郵箱格式不正確!請重新輸入!</font>);
$(#email)focus();
return false;
}
return true;
}
//jquery驗證手機號碼
function checkSubmitMobil() {
if ($(#mobile)val() == ) {
alert(手機號碼不能為空!);
//$(#moileMsgl(<font color=red>手機號碼不能為空!</font>);
$(#mobile)focus();
return false;
}
if (!$(#mobile)val()match(/^((([]{})||)+\d{})$/)) {
alert(手機號碼格式不正確!);
//$(#moileMsgl(<font color=red>手機號碼格式不正確!請重新輸入!</font>);
$(#mobile)focus();
return false;
}
return true;
}
【責編:at
】
From:http://tw.wingwit.com/Article/program/Java/Javascript/201311/25344.html