ต่อไปนี้เป็นรหัสสำหรับการลัดวงจรในบูลีน -
ตัวอย่าง
<!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>Short-circuit Boolean</h1> <div class="result"></div> <br /> <button class="Btn">&& short circuit evaluation</button> <button class="Btn">|| short circuit evaluation</button> <h3>Click on the above button to see the the short circuit evaluation</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelectorAll(".Btn"); function retTrue() { resEle.innerHTML += "True <br>"; return true; } function retFalse() { resEle.innerHTML += "False <br>"; return false; } BtnEle[0].addEventListener("click", () => { resEle.innerHTML = "&& evaluation<br>"; retFalse() && retTrue(); }); BtnEle[1].addEventListener("click", () => { resEle.innerHTML = "|| evaluation <br>"; retTrue() || retFalse(); }); </script> </body> </html>
ผลลัพธ์
เมื่อคลิกปุ่ม '&&การประเมินการลัดวงจร' -
เมื่อคลิกที่ '|| ปุ่มประเมินไฟฟ้าลัดวงจร ' -