代码实现不了判断文本框中输入的是否是数字

<head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/><title>无标题文档<... <head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript">
function show()
{
var a=document.form1.textfiled.value;
if(isNaN(a))
{
alert("输入的数字不对!");
return false;
}
else
return true;
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="" onsubmit="show()">
<p>输入
<input type="text" name="textfield" value=""/>
</p>
<p>
<input type="submit" name="Submit" value="提交" />
</p>
</form>
</body>
</html>
展开
 我来答
chensiel
2011-11-24 · TA获得超过158个赞
知道小有建树答主
回答量:137
采纳率:0%
帮助的人:128万
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript">
function show(){
var a=document.getElementById("textfield").value;
if(isNaN(a)||a.length==0)
{
alert("输入正确的数字!");
return false;
}
else
return true;
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="" onsubmit="show()">
<p>输入
<input type="text" id="textfield" name="textfield" value=""/>
</p>
<p>
<input type="submit" name="Submit" value="提交" />
</p>
</form>
</body>
</html>
华仔成教
2011-11-22 · TA获得超过888个赞
知道小有建树答主
回答量:808
采纳率:100%
帮助的人:753万
展开全部
文本框名称不符合:
var a=document.form1.textfiled.value;
应该是:
var a=document.form1.textfield.value;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小冰冰2n
2011-11-22 · 超过11用户采纳过TA的回答
知道答主
回答量:65
采纳率:0%
帮助的人:35.9万
展开全部
晕,又碰见一个拿name的,页面的id为什么不写呢?页面都是通过id赋值的!!name写错了!!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式