Title1

Title2

Title3

2-1 if .... else ....選擇敘述

  1. if
    if(條件){
      //條件成立
    }
    
    
      <script>
        var weather = "下雨";
          if(weather == "下雨"){
            alert("今天要帶傘");
        }
      </script>

     

  2. if .... else ....
    if(條件){
      //條件成立
    }else{
      //條件不成立
    }
    
    
      <script>
        var weather = "下雨";
         if(weather == "下雨"){
          alert("今天要帶傘");
        }else{
         alert("今天不要帶傘");
        }
      </script>
  3. 巢狀選擇
    ch2_1_3.html
  4. if .... else if ... else 多向選擇敘
    
        if(條件){
          //條件成立執行
        }else if(條件1){
          //條件1 成立執行
        }else if(條件2){
          //條件2成立執行
        }else{
          //條件皆不成立執行
        }

    ch2_1_4.html

  5. switch 判斷式
    檔案結構重要組成,與php同
    ch2_1_5.html
  6.