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

麻烦大神们帮我看看哪里写错了,点击按钮没反映

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

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

<title>无标题文档</title>

<script type="text/javasctipt">

  function rec() {

  var score;


  score=85

  if(score>=90)

  {

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

  }

  else if(score>=80)

  {

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

  }

  else if(score>=70)

  {

    document.write("继续努力!");

  }

  else

  {

document.write("你得非常努力!");  

  }

  }

</script>


</head>

<body>

    <input name="button" type="button" onClick="rec()" value="按 钮" />

</body>

</head>


<body>

</body>

</html>


正在回答

6 回答

没有写prompt啊怎么弹,这和写不写分号有什么关系

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

楼上是对的,其他人写的是什么?要用prompt呀

1 回复 有任何疑惑可以回复我~
score =prompt("输入你的成绩");

这个题应该这么写吧?


1 回复 有任何疑惑可以回复我~
//第一处 javascript拼写错误
<script type="text/javasctipt">
//修改为如下:
<script type="text/javascript">

//第二处 缺少语句结束的分号;
score=85
//修改为如下:
score=85;

以上两处改成之后程序应该可以正常运行了。
再者就是提醒您,代码书写注意规范,多参考行业优秀代码格式,大有裨益。
望采纳,谢谢您。
1 回复 有任何疑惑可以回复我~

<!DOCTYPE HTML>

<html>

<head>

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

<title>判断语句</title>

  <script type="text/javascript">

  function rec(){

var score ;

score =85; //score变量存储成绩,初值为80

if(score>=90)

    {

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

    }

    else if(score>=80)

    {

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

    }

    else if(score>=70)

    {

        document.write("继续努力!");

    }

    else

    {

        document.write("你得非常努力!");  

    }

  }

  </script>

</head>

<body>

       <input name="button" type="button" onClick="rec()" value="按 钮" />

</body>

</html>


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

var = 85; 你少了分号

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

举报

0/150
提交
取消

麻烦大神们帮我看看哪里写错了,点击按钮没反映

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