在 jQuery 中,if 語句常常用于判斷條件是否滿足,從而執(zhí)行相應(yīng)的代碼塊。
if 語句的基本形式如下:
if (條件) { // 執(zhí)行代碼塊 }
條件可以是一個(gè)表達(dá)式,例如:
if (score >90) { console.log("優(yōu)秀"); }
上述代碼中,當(dāng) score 大于 90 時(shí),會(huì)輸出 "優(yōu)秀"。
如果需要在條件不成立時(shí)執(zhí)行一些代碼,可以使用 else 語句,例如:
if (score >90) { console.log("優(yōu)秀"); } else { console.log("及格"); }
上述代碼中,當(dāng) score 大于 90 時(shí),會(huì)輸出 "優(yōu)秀",否則輸出 "及格"。
還可以使用 else if 語句來判斷多個(gè)條件,例如:
if (score >90) { console.log("優(yōu)秀"); } else if (score >60) { console.log("良好"); } else { console.log("及格"); }
上述代碼中,當(dāng) score 大于 90 時(shí),會(huì)輸出 "優(yōu)秀";當(dāng) score 大于 60 但不大于 90 時(shí),會(huì)輸出 "良好";當(dāng) score 不大于 60 時(shí),會(huì)輸出 "及格"。