자바스크립트에서 removeEventListener() 메서드를 사용하여 addEventListener() 메서드로 연결된 이벤트 핸들러를 제거합니다.
예시
<!DOCTYPE html> <html> <head> <style> #box { background-color: gray; border: 2px dashed; } </style> </head> <body> <div id="box">Demo Text! <p>Click below to remove event handler.</p> <button onclick="removeEvent()" id="btnid">Remove</button> </div> <p id="pid"> </p> <script> document.getElementById("box").addEventListener("mousemove", display); function display() { document.getElementById("pid").innerHTML = Math.random(); } function removeEvent() { document.getElementById("box").removeEventListener("mousemove", display); } </script> </body> </html>