写个jsp页面,有一个文本框,和一个按钮,
1个回答
展开全部
<html>
<head>
<script>
function check()
{
if (document.form1.text.value.indexOf(".") != -1 && document.form1.text.value.length - document.form1.text.value.indexOf(".") > 3)
{
alert("error");
return false;
}
else
{
alert("pass");
return true;
}
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="text" id="text" />
<input type="submit" name="button" id="button" value="Submit" onclick="return check()" />
</form>
</body>
</html>
<head>
<script>
function check()
{
if (document.form1.text.value.indexOf(".") != -1 && document.form1.text.value.length - document.form1.text.value.indexOf(".") > 3)
{
alert("error");
return false;
}
else
{
alert("pass");
return true;
}
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="text" id="text" />
<input type="submit" name="button" id="button" value="Submit" onclick="return check()" />
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询