คำสั่งเงื่อนไขใน JavaScript มีสามประเภท -
- ถ้าคำสั่ง − คำสั่ง if ใช้เพื่อรันโค้ดภายในบล็อก if เฉพาะเมื่อตรงตามเงื่อนไขที่ระบุเท่านั้น
- คำสั่ง if else − คำสั่ง If….Else ใช้เพื่อตรวจสอบเพียงสองเงื่อนไขและรันโค้ดที่แตกต่างกันสำหรับแต่ละเงื่อนไข
- คำสั่ง if else if else − คำสั่ง if…else if…else ใช้สำหรับตรวจสอบเงื่อนไขมากกว่าสองเงื่อนไข
ต่อไปนี้เป็นรหัสที่จะใช้คำสั่งเงื่อนไขใน JavaScript -
ตัวอย่าง
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 20px; font-weight: 500; color: blueviolet; } </style> </head> <body> <h1>Conditional statements in JavaScript</h1> <input type="text" class="numInput" /> <button class="Btn">CHECK</button><br /> <div class="result"></div> <h3>Click on the above button to see if the above number is divisible by 2,3 or both</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); let numInputEle = document.querySelector(".numInput"); BtnEle.addEventListener("click", () => { if (numInputEle.value % 2 === 0 && numInputEle.value % 3 === 0) { resEle.innerHTML = "The numbers is divisible by 2 and 3 both"; } else if (numInputEle.value % 3 === 0) { resEle.innerHTML = "The number is divisbly by 3"; } else if (numInputEle.value % 2 === 0) { resEle.innerHTML = "The numbers is divisible by 2"; } else { resEle.innerHTML = "The numbers isn't divisible by 2 or 3"; } }); </script> </body> </html>
ผลลัพธ์
ในการป้อนตัวเลขและคลิกที่ปุ่ม 'ตรวจสอบ' -