javascript的数字验证

<html><head><title>计算机</title><metahttp-equiv="Content-Type"content="text/html;charse... <html>
<head>
<title>计算机</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<script>
function ok(){
first=document.rechnen.first.value;
second=document.rechnen.second.value;

if(isNAN(first)){
alert("第一个必须是数字");
return false;
}

if(isNAN(second){
alert("第二个必须是数字");
return false;
}
return true;
}
</script>

<body>
<form name="rechnen" method="post" action="b.jsp" OnSubmit="return ok();">
<table width="40%" border="5" align="center">
<tr>
<td>第一个数:<input type="text" name="first"></td>
<td>第二个数:<input type="text" name="second"></td>

</tr>
<center>
<input type = "submit" name="Submit" value="计算">
</center>
</table>
</form>
</body>
</html>

就是这段代码,无法实现数字验证。求教哪里有问题。
展开
 我来答
simlinkwx
2010-03-08 · TA获得超过1331个赞
知道小有建树答主
回答量:308
采纳率:0%
帮助的人:570万
展开全部
改好了,onsubmit应该写到<input>里,还有是isNaN不是isNAN
<html>
<head>
<title>计算机</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<script>
function ok(){
first=document.rechnen.first.value;
second=document.rechnen.second.value;

if(isNaN(first)){
alert("第一个必须是数字");
return false;
}

if(isNaN(second)){
alert("第二个必须是数字");
return false;
}
return true;
}
</script>

<body>
<form name="rechnen" method="post" action="b.jsp" OnSubmit="return ok();">
<table width="40%" border="5" align="center">
<tr>
<td>第一个数:<input type="text" name="first"></td>
<td>第二个数:<input type="text" name="second"></td>

</tr>
<center>
<input type = "submit" name="Submit" value="计算" OnSubmit="return ok();">
</center>
</table>
</form>
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式