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

HTML DOM removeAttribute() เมธอด


วิธีการ HTML DOM removeAttribute() จะลบแอตทริบิวต์ที่ระบุในพารามิเตอร์ออกจากองค์ประกอบที่ระบุในเอกสาร HTML

ไวยากรณ์

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

node.removeAttribute(attributeName);

ตัวอย่าง

ให้เราดูตัวอย่างของวิธีการ removeAttribute() -

<!DOCTYPE html>
<html>
<head>
<style>
   html{
      height:100%;
   }
   body{
      text-align:center;
      color:#fff;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat;
      height:100%;
   }
   .btn{
      background:#0197F6;
      border:none;
      height:2rem;
      border-radius:2px;
      width:35%;
      margin:2rem auto;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM removeAttribute() method Demo</h1>
<p style="color:#db133a;font-size:1.2rem;">Hi! I'm a para element in HTML with some random text</p>
<button onclick="remove()" class="btn">Remove Attribute</button>
<script>
   function remove() {
      document.querySelector("p").removeAttribute("style");
   }
</script>
</body>
</html>

ผลลัพธ์

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

HTML DOM removeAttribute() เมธอด

คลิกที่ “ลบแอตทริบิวต์ ” เพื่อลบแอตทริบิวต์สไตล์ออกจาก

องค์ประกอบ

HTML DOM removeAttribute() เมธอด