x
 
<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>removeEventListener() 方法</h2>
<p>每当您在本文档中移动鼠标时,mousemove 事件处理程序都会显示一个随机数。</p>
<p>单击“移除”可删除事件处理程序。</p>
<button onclick="removeHandler()">移除</button>
<p id="demo"></p>
<script>
document.addEventListener("mousemove", myFunction);
function myFunction() {
  document.getElementById("demo").innerHTML = Math.random();
}
function removeHandler() {
  document.removeEventListener("mousemove", myFunction);
}
</script>
</body>
</html>