-
键盘事件查看全部
-
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form> <input type="button" id="one" value="click1" onclick="one1()" /> <input type="button" id="two" value="click2" /> <input type="button" id="three" value="click3" /> </form> <script> function one1(){ alert("你好!世界."); } var two1=document.getElementById("two"); two1.onclick=function(){ alert("hello!world"); } two1.onclick=null; var three1=document.getElementById("three"); three1.addEventListener("click",one1,false); three1.addEventListener("click",function(){ alert("我在慕课网学习"); },false); three1.removeEventListener("click",one1,false); three1.removeEventListener("click",function(){ alert("我在慕课网学习");//注意:这个删除是无效的,因为两个匿名函数即使写的一模一样,也是不同的含义,他们互不相通! },false); </script> </body> </html>查看全部
-
事件对象查看全部
-
JS事件处理程序查看全部
-
JS事件分类查看全部
-
使用封装好的方法查看全部
-
IE中的事件对象查看全部
-
跨浏览器解决事件对象查看全部
-
DOM中的事件对象查看全部
-
跨浏览器事件处理程序查看全部
-
事件处理程序查看全部
-
事件捕获查看全部
-
事件冒泡查看全部
-
HTML事件的缺点: HTML和JS代码紧密的耦合在一起查看全部
-
DOM与IE的事件对象属性和方法查看全部
举报
0/150
提交
取消