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

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

<!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>

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


正在回答

3 回答

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>


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

Bill0123 提问者

thanks a lot!
2015-08-02 回复 有任何疑惑可以回复我~
#2

Perona 回复 Bill0123 提问者

You're welcome.
2015-08-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739727    人
  • 解答问题       9566    个

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

进入课程

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

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