问答详情
源自: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; //score变量,用来存储用户输入的成绩值。

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

if(score>=90)

{

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

}

else if(score>=75)

    {

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

}

else if(score>=60)

    {

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

    }

    else if(score!=null)

{

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

}

    else

    {

        document.write("未输入成绩!");

    }

  }

  </script>

</head>

<body>

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

</body>

</html>

我的代码通过了,但是窗口弹不出为什么?各位大神,麻烦了。

提问者:贝小加 2015-12-07 22:57

个回答

  • 木子舟义
    2015-12-07 23:00:47
    已采纳

    两个错误 为输入成绩后面的分号   onClick  应该为onclick

    <!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 != null) {
                document.write("要努力了!");
            } else {
                document.write("未输入成绩!");
            }
        }
        </script>
    </head>
    
    <body>
        <input name="button" type="button" onclick="rec();" value="点击我,对成绩做评价!" />
    </body>
    
    </html>


  • weibo_我叫束小雅_0
    2015-12-15 15:29:11

    未输入成绩后面的那个分号是中文状态下的,改了应该可以

  • echo_kinchao
    2015-12-08 09:06:37

    你的api写错了