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>
就是这段代码,无法实现数字验证。求教哪里有问题。 展开
<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>
就是这段代码,无法实现数字验证。求教哪里有问题。 展开
1个回答
展开全部
改好了,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>
<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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询