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

ออบเจ็กต์ส่วน HTML DOM


HTML DOM Section Object แสดงถึงองค์ประกอบ

ของเอกสาร HTML

ให้เราสร้างวัตถุส่วน

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

document.createElement(“SECTION”);

ตัวอย่าง

ให้เราดูตัวอย่างของวัตถุส่วน HTML DOM -

<!DOCTYPE html>
<html>
<head>
<style>
   body{
      text-align:center;
      background-color:#fff;
      color:#0197F6;
   }
   h1{
      color:#23CE6B;
   }
   .drop-down{
      width:35%;
      border:2px solid #fff;
      font-weight:bold;
      padding:8px;
   }
   .btn{
      background-color:#fff;
      border:1.5px dashed #0197F6;
      height:2rem;
      border-radius:2px;
      width:60%;
      margin:2rem auto;
      display:block;
      color:#0197F6;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM Section Object Demo</h1>
<button onclick="createSection()" class="btn">Create a section object</button>
<script>
   function createSection() {
      var sectionElement = document.createElement("SECTION");
      sectionElement.innerHTML="

      Hi! I'm a <section> element in HTML";

      document.body.appendChild(sectionElement);

   } </script> </body> </html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ออบเจ็กต์ส่วน HTML DOM


ออบเจ็กต์ส่วน HTML DOM