问答详情
源自: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=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>


提问者:叫我八戒好了cy 2016-11-10 14:55

个回答

  • 水畔蝴蝶
    2016-11-10 15:10:57
    已采纳

     else if (score>=75) 

        {

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

    这里少了个又半大括号吧

  • 雷叔爱吃各种面
    2016-11-18 17:06:10

    score=prompt("你们的考试分数");  
    你的分号不见了