當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


HTML DOM removeEventListener()用法及代碼示例

DOM removeEventListener() 方法從 HTML 文檔中的 HTML 元素中刪除事件處理程序。

用法

以下是語法 -

document.open(event,function,useCapture);

這裏,event代表事件名稱,function指定要刪除和的函數useCapture需要true或者false值。

在哪裏true表示從捕獲階段刪除事件處理程序和false代表從冒泡階段刪除事件處理程序。

示例

讓我們看一個 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>

輸出

這將產生以下輸出 -

懸停在“Hover on me”按鈕觀察變化,然後點擊“Remove Event Handler”按鈕從“Hover on me“ 按鈕。從今起

現在,在懸停時,什麽都不會發生 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM removeEventListener() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。