สมมติว่าต่อไปนี้คือ div ของเรา –
<div id="showOrHide"> Welcome in JavaScript </div>
ต่อไปนี้เป็นปุ่มของเรา เมื่อคลิก div ด้านบนควรซ่อน -
<button onclick="showOrHideDiv()">Click The Button</button>
ใช้แนวคิด style.display ใน JavaScript เพื่อซ่อน div ต่อไปนี้เป็นรหัส -
ตัวอย่าง
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <button onclick="showOrHideDiv()">Click The Button</button> <div id="showOrHide"> Welcome in JavaScript </div> <script> function showOrHideDiv() { var v = document.getElementById("showOrHide"); if (v.style.display === "none") { v.style.display = "block"; } else { v.style.display = "none"; } } </script> </body> </html>
ในการรันโปรแกรมข้างต้น ให้บันทึกชื่อไฟล์ “anyName.html(index.html)” และคลิกขวาที่ไฟล์ เลือกตัวเลือก “เปิดด้วย Live Server” ในตัวแก้ไข VS Code
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
เมื่อผู้ใช้คลิกที่ปุ่ม div จะซ่อน ภาพหน้าจอมีดังนี้ −