为什么js这样写不能完成表单校验?
为什么js这样写不能完成表单校验?<scripttype="text/javascript">//判断字符串是否为空functionisEmpty(text){if(te...
为什么js这样写不能完成表单校验?
<script type="text/javascript">
//判断字符串是否为空
function isEmpty(text) {
if (text == "" || text == null)
return true;
else
return false;
}
//IsEmail
function isEmail(email) {
var exp = /^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/gi;
//var exp = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;
if (!exp.test(email.value())) {
alert("你输入的Email地址格式不正确,应形如:abc123@def.com,请检查后重试!");
email.focus();
return false;
} else
alert("2")
return true;
}
function check() {
var f = document.getElementById("form1");//获取表单对象
if (!isEmpty(f.email.value)) {
isEmail(document.getElementById("email"));
}
}
</script>
……
<input type="text" name="email" id="email" maxlength="40" placeholder="输入常用邮箱(如:1234@qq.com)" class="txtbox text_middlespan">
…… 展开
<script type="text/javascript">
//判断字符串是否为空
function isEmpty(text) {
if (text == "" || text == null)
return true;
else
return false;
}
//IsEmail
function isEmail(email) {
var exp = /^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/gi;
//var exp = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;
if (!exp.test(email.value())) {
alert("你输入的Email地址格式不正确,应形如:abc123@def.com,请检查后重试!");
email.focus();
return false;
} else
alert("2")
return true;
}
function check() {
var f = document.getElementById("form1");//获取表单对象
if (!isEmpty(f.email.value)) {
isEmail(document.getElementById("email"));
}
}
</script>
……
<input type="text" name="email" id="email" maxlength="40" placeholder="输入常用邮箱(如:1234@qq.com)" class="txtbox text_middlespan">
…… 展开
展开全部
isEmail(document.getElementById("email"));
这句有问题吧
应该这样
isEmail(document.getElementById("email").value);
再说你这个check函数也没有返回值啊,代码很纠结
function check() {
var f = document.getElementById("form1");//获取表单对象
if (!isEmpty(f.email.value)) {
return(isEmail(document.getElementById("email")));
}
else return(false);
}
这句有问题吧
应该这样
isEmail(document.getElementById("email").value);
再说你这个check函数也没有返回值啊,代码很纠结
function check() {
var f = document.getElementById("form1");//获取表单对象
if (!isEmpty(f.email.value)) {
return(isEmail(document.getElementById("email")));
}
else return(false);
}
更多追问追答
追问
其他的能校验,这个邮箱还是不行
追答
什么情况?错误提示没有吗?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询