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

HTML DOM removeEventListener() Method


DOM removeEventListener() วิธีการลบตัวจัดการเหตุการณ์ออกจากองค์ประกอบ HTML ในเอกสาร HTML

ไวยากรณ์

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

document.open(event,function,useCapture);

ที่นี่ เหตุการณ์ เป็นตัวแทนของชื่อเหตุการณ์ หน้าที่ ระบุฟังก์ชันที่จะลบและ useCapture รับทั้ง จริง หรือ เท็จ ค่า

โดยที่ จริง ตัวแทนลบตัวจัดการเหตุการณ์ออกจากเฟสการจับภาพและ เท็จ ตัวแทนจะลบตัวจัดการเหตุการณ์ออกจากเฟสเดือด

ตัวอย่าง

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

<!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%;
   }
   p{
      font-size:1.2rem;
   }
   .btn{
      background:#0197F6;
      border:none;
      height:2rem;
      border-radius:2px;
      width:35%;
      margin:2rem auto;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
   .mycolor{
      background-color: #db133a;
   }
</style>
</head>
<body>
<h1>DOM removeEventListener() method Demo</h1>
<button class="btn hover-btn">Hover on me</button>
<button onclick="remove()" class="btn">Remove Event Handler</button>
<script>
   var hoverBtn=document.querySelector('.hover-btn');
   function toggleFun(){
      hoverBtn.classList.toggle("mycolor");
   }
   hoverBtn.addEventListener('mouseover',toggleFun);
   function remove(){
      hoverBtn.removeEventListener('mouseover',toggleFun);
   }
</script>
</body>
</html>

ผลลัพธ์

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

HTML DOM removeEventListener() Method

วางเมาส์เหนือ “วางเมาส์เหนือฉัน ” เพื่อสังเกตการเปลี่ยนแปลงจากนั้นคลิกที่ “ลบตัวจัดการเหตุการณ์ ” เพื่อลบตัวจัดการเหตุการณ์ออกจาก “วางเมาส์เหนือฉัน " ปุ่ม. ตอนนี้ใน

HTML DOM removeEventListener() Method

ตอนนี้เมื่อโฮเวอร์จะไม่มีอะไรเกิดขึ้น -

HTML DOM removeEventListener() Method