function checkSubmitMobil() {
if ($("#tel").val() == "") {
alert("手机号码不能为空!");
//$("#moileMsg").html("<font color='red'>手机号码不能为空!</font>");
$("#tel").focus();
return false;
}
// var pattern = /^1[34578]\d{9}$/;
if (!$("#tel").val().match(/^1[34578]\d{9}$/)) {
alert("手机号码格式不正确!");
//$("#moileMsg").html("<font color='red'>手机号码格式不正确!请重新输入!</font>");
$("#tel").focus();
return false;
}
return true;
}