为了账号安全,请及时绑定邮箱和手机立即绑定

prompt() 中按取消键应该返回null 那么为什么下例 按取消键 输出值为“要努力了”

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>prompt</title>

  <script type="text/javascript">

  function rec(){

var score; //score变量,用来存储用户输入的成绩值。

score = prompt("请输入你的成绩")   ;

if(score>=90)

{

  document.write("你很棒!");

}

else if(score>=75)

    {

  document.write("不错吆!");

}

else if(score>=60)

    {

  document.write("要加油!");

    }

    else if(score<60&&score>=0)

{

       document.write("要努力了!");

}

else

{document.write("请输入正确数字!")}

  }

  </script>

</head>

<body>

    <input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />

</body>

</html>


正在回答

5 回答

楼上都说的很对,如果你想做一个分数为0的判断,应该把0作为字符串进行判断。。这样if(socre="0" )

0 回复 有任何疑惑可以回复我~

是不是没有填写时当作输入为0了

0 回复 有任何疑惑可以回复我~

因为 prompt的确定是true,取消是false,false就是0,所以会进入到score>=0这个条件中

0 回复 有任何疑惑可以回复我~

因为 prompt的确定是true,取消是false,false就是0,所以会进入到score>=0这个条件中

0 回复 有任何疑惑可以回复我~

因为 score>=0 判断为true,具体原因参考这里  http://www.cnblogs.com/_franky/archive/2012/09/26/2703723.html

1 回复 有任何疑惑可以回复我~
#1

慕运维2950214

刚才打错了,原本是要打 null>=0 判断为true ,虽然都一样
2017-03-06 回复 有任何疑惑可以回复我~
#2

weibo_东璃沫_0

表示,这算是逻辑上的缺点吧。
2017-03-15 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

prompt() 中按取消键应该返回null 那么为什么下例 按取消键 输出值为“要努力了”

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信