Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะตั้งค่าประเภทการแสดงผลขององค์ประกอบด้วย JavaScript ได้อย่างไร?


ในการตั้งค่าประเภทการแสดงผลขององค์ประกอบ ให้ใช้การแสดงผล คุณสมบัติ. หากคุณต้องการซ่อนองค์ประกอบ ก็ไม่ต้องใช้เลย

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อตั้งค่าประเภทการแสดงผลขององค์ประกอบด้วย JavaScript -

<!DOCTYPE html>
<html>
   <head>
      <style>
         #myID {
            width: 250px;
            height: 200px;
            background-color: green;
         }
      </style>
   </head>
   <body>
      <button onclick="display()">Set display as none</button>
      <div id="myID">
         <h1>Heading Level 1 for Demo</h1>
         This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text.
      </div>
      <script>
         function display() {
            document.getElementById("myID").style.display = "none";
         }
      </script>
   </body>
</html>