//jquery驗證郵箱
function checkSubmitEmail() {
if ($("#email")
//$("#confirmMsg")
alert("郵箱不能為空!")
$("#email")
return false;
}
if (!$("#email")
alert("郵箱格式不正確");
//$("#confirmMsg")
$("#email")
return false;
}
return true;
}
//jquery驗證手機號碼
function checkSubmitMobil() {
if ($("#mobile")
alert("手機號碼不能為空!");
//$("#moileMsg")
$("#mobile")
return false;
}
if (!$("#mobile")
alert("手機號碼格式不正確!");
//$("#moileMsg")
$("#mobile")
return false;
}
return true;
}
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19869.html