问答详情
源自:2-4 JavaScript-提问(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

{

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

}

  }

  </script>

</head>

<body>

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

</body>

</html>


提问者:毕竟折耳猫 2016-04-16 09:37

个回答

  • 炸毛的小老虎
    2016-04-16 10:21:44
    已采纳

        else

    {

          alert(score);//这里有空值但是你得给他显示出来。

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

    }


  • qq_溜溜_3
    2016-04-16 10:13:01

    同问啊


  • Forth_Person
    2016-04-16 10:02:45

    是返回了null了的,但是最后是else判断的,就算取消了还是会显示“要努力了”,所以在使用prompt时推荐先加个判断其是否null的if语句。