JavaScript 中的 if...else if... 语句是什么?


if...else if... 语句是 if…else 的高级形式,它允许 JavaScript 根据多个条件做出正确的决定。

语法

if-else-if 语句的语法如下:

if (expression 1){
   Statement(s) to be executed if expression 1 is true
}
else if (expression2){
   Statement(s) to be executed if expression 2 is true
}
else if (expression3){
   Statement(s) to be executed if expression 3 is true
}
else{
   Statement(s) to be executed if no expression is true
}

示例

你可以尝试运行以下代码来学习如何在 JavaScript 中使用 if…else if 语句:

在线演示

<html>
   <body>
      <script>
         var book= "maths";
         if( book== "history" ){
            document.write("<b>History Book</b>");
         }
         else if(book == "maths" ){
            document.write("<b>Maths Book</b>");
         }
         else if(book == "economics" ){
            document.write("<b>EconomicsBook</b>");
         }
         else{
            document.write("<b>Unknown Book</b>");
         }
      </script>
   </body>
<html>

更新时间: 13-6 月-2020

299 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告