标签:bsp lis resize dom 指定元素 使用 logs cap rem
addEventListener()方法
语法
element.addEventListener(event, function, useCapture);
注意:event参数不加"on" 前缀。 例如,使用 "click" ,而不是使用 "onclick"。
向同一个元素添加多个事件句柄
function fun_1(){ console.log("listener_1"); } function fun_2(){ console.log("listener_2"); } window.onload = function(){ div = document.getElementsByTagName("div")[0]; div.addEventListener("mouseover", fun_1); div.addEventListener("click", fun_2); }
向window对象添加事件句柄
function fun_1(){ console.log("resize"); } window.addEventListener("resize", fun_1);
removeEventListener() 移除由addEventListener()方法添加的事件句柄
element.removeEventListener("mousemove", myFunction);
标签:bsp lis resize dom 指定元素 使用 logs cap rem
原文地址:http://www.cnblogs.com/jiaoxuanwen/p/6790549.html