JAVAscript学习笔记 js句柄监听事件 第四节 (原创) 参考js使用表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVAscript学习笔记 js句柄监听事件 第四节 (原创) 参考js使用表相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>句柄添加监听事件</title> <script type="text/javascript" src="tzy.js"></script> </head> <body> <button id="mybtn" onclick="demo()">按钮</button> <script> /* //注意这种引用样式必须放在button后面不然出现 //Uncaught TypeError: Cannot read property ‘addEventListener‘ of null //错误:页面未加载完成 var x = document.getElementById("mybtn"); x.addEventListener("click", hello); x.addEventListener("click", world);//添加 x.removeEventListener("click", world);//移除 function hello() { alert("hello"); } function world() { alert("world"); }*/ </script> </body> </html>
//注意这种引用样式必须放在button后面不然出现
//Uncaught TypeError: Cannot read property ‘addEventListener‘ of null
//错误:页面未加载完成
function demo(){
var x = document.getElementById("mybtn");
x.addEventListener("click", hello);
x.addEventListener("click", world);//添加
x.removeEventListener("click", world);//移除
}
function hello() {
alert("hello");
}
function world() {
alert("world");
}
以上是关于JAVAscript学习笔记 js句柄监听事件 第四节 (原创) 参考js使用表的主要内容,如果未能解决你的问题,请参考以下文章