if
(!email.match(/^w+((-w+)|(.w+))*@[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z0-9]+$/)) {
alert(
"邮箱格式不正确!请重新输入"
);
$(
"#email1"
).focus();
return
false
;
}
if
(weburl !=
""
) {
var
isUrl = /^(http(s)?:
//)?(www.)?[w-]+.w{2,4}(/)?$/;
if
(!weburl.match(isUrl)) {
return
false
;
}
if
(tel !=
""
) {
var
partten = /^(((d{3}))|(d{3}-))?13[0-9]d{8}|15[0-9]d{8}|189d{8}$/;
if
(!partten.test(tel)) {
alert(
"手机号码填写错误"
);
return
false
;
}