问答详情
源自:2-4 JavaScript-提问(prompt 消息对话框)

为什么这样写消息对话框出不来了?

<!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=prompt(成绩多少?); //score变量,用来存储用户输入的成绩值。                ;

if(score>=90);

{

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

}


    else

{

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

}

  }

  </script>

</head>

<body>

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

</body>

</html>

为什么这样写消息对话框出不来了,直接就提示我"要努力了!"?


提问者:Bill0123 2015-08-01 14:55

个回答

  • Perona
    2015-08-01 17:58:38
    已采纳

    var score=prompt(成绩多少?); //score变量,用来存储用户输入的成绩值。                ;

    这里缺了引号

    var score=prompt("成绩多少?");
    if(score>=90);

    这里多了分号,if()后面是不需要加分号的

    if(score>=90)

    参考代码

    <!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=prompt("成绩多少?"); //score变量,用来存储用户输入的成绩值。                ;
        if(score>=90){
          document.write("你很棒!");
        }else{
          document.write("要努力了!");
        }
      }
      </script>
    </head>
    <body>
        <input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
    </body>
    </html>