求大神帮我看看js代码为什么没有效果啊!!
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
function rec(form){
var a=form.recshortth.value
{
if(a> 60)
alert("及格");
else
alert("不及格");
}
}
</script>
<form action="">
<input type="text" name="reshortth" />
<br/>
<input type="button" name="button" onclick="rec(this.form)" value="显示" />
</form>
</body>
</html> 展开
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
function rec(form){
var a=form.recshortth.value
{
if(a> 60)
alert("及格");
else
alert("不及格");
}
}
</script>
<form action="">
<input type="text" name="reshortth" />
<br/>
<input type="button" name="button" onclick="rec(this.form)" value="显示" />
</form>
</body>
</html> 展开
4个回答
展开全部
var a=form.recshortth.value //这一句错了,改成下面的,
var a=parseInt(form.recshortth.value)
也就是说先转换成整数后,再去做比较
var a=parseInt(form.recshortth.value)
也就是说先转换成整数后,再去做比较
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是不是因为a那分号?或者a不是数值?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
话说recshortth是什么意思?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询