addEventListener() 方法用来向指定元素添加句柄
基本语法:
addEventListener(event,function);
实例:
<body>
<button onclick="demo()">按钮</button>
<script>
function demo() {
document.addEventListener("click",hello);
}
function hello(){alert("hello")};
</script>
</body>
浏览器显示:
当然有添加当然有去除,removeEventListener()方法即可去除指定元素句柄
基本语法:
removeEventListener(event,function);
实例
<body>
<button onclick="demo()">按钮</button>
<script>
function demo() {
document.addEventListener("click",hello);
document.removeEventListener("click",hello);
}
function hello(){alert("hello")};
</script>
</body>
再次点击按钮后,将不再触发函数,不再弹出提示框