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

求解if else ,如下面代码所示,怎么理解后面几个else

<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
    {
       document.write("要努力了!");
    }
  }
  </script>

提问者:qq_低调的_奢华_0 2015-12-29 10:28

个回答

  • 努力提升
    2015-12-29 10:31:57
    已采纳

    就是当score小于90并且大于等于75的时候执行
           document.write("不错吆!");

    当score小于75并且大于等于60的时候执行

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

    当score小于60的时候执行

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

  • 努力提升
    2015-12-29 11:14:30

    如果有必要是可以多次使用的。

  • Hogan_xue
    2015-12-29 10:59:43

    if-else嵌套使用时,else总是和它上一个最近的if配对,这条语句实际上就是这样:

     if(score>=90)
        {
           document.write("你很棒!");
        }
     else{

          if(score>=75)
          {
            document.write("不错吆!");
          }
         else{ 

                  if(score>=60)
                 {
                 document.write("要加油!");
                 }
                 else
                {
                  document.write("要努力了!");
                 }  

             }

           }