如何在form中调用js表单验证 10
7个回答
展开全部
<html>
<head>
<script type="text/javascript">
function test(){
var x=document.a.b.value
var rg=new RegExp("@")
if(rg.test(x))
{
alert(x)
return true
}else{
alert(x)
document.a.b.blur()
return false
}
}
</script>
</head>
<body>
<form name="a" action="submitpage.htm" onsubmit="return test()" method="post">
Email: <input type="text" name="b" size="30">
<input type="submit" value="Submit">
</form>
</body>
</html>
<head>
<script type="text/javascript">
function test(){
var x=document.a.b.value
var rg=new RegExp("@")
if(rg.test(x))
{
alert(x)
return true
}else{
alert(x)
document.a.b.blur()
return false
}
}
</script>
</head>
<body>
<form name="a" action="submitpage.htm" onsubmit="return test()" method="post">
Email: <input type="text" name="b" size="30">
<input type="submit" value="Submit">
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-05-13
展开全部
你是按钮还是超链接啊,不管是哪个,在事件里写上:javascript:方法名();就行了!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询