JS事件绑定

Posted 迷失地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS事件绑定相关的知识,希望对你有一定的参考价值。

// 事件绑定
        this.bindHandler = (function() {
            if (window.addEventListener) {// 标准浏览器
                return function(elem, type, handler) {// elem:节点    type:事件类型   handler:事件处理程序
                    // 最后一个参数为true:在捕获阶段调用事件处理程序    为false:在冒泡阶段调用事件处理程序
                    elem.addEventListener(type, handler, false);
                }
            } else if (window.attachEvent) {// IE浏览器
                return function(elem, type, handler) {
                    elem.attachEvent("on" + type, handler);
                }
            }
        })();

        // 事件解除
        this.removeHandler = (function() {
            if (window.removeEventListerner) {// 标准浏览器
                return function(elem, type, handler) {
                    elem.removeEventListerner(type, handler, false);

                }
            } else if (window.detachEvent) {// IE浏览器
                return function(elem, type, handler) {
                    elem.detachEvent("on" + type, handler);
                }
            }
        })();

以上是关于JS事件绑定的主要内容,如果未能解决你的问题,请参考以下文章

js中事件绑定

js事件绑定及深入

JS 中的事件绑定事件监听事件委托

JS 事件绑定事件监听事件委托详细介绍

js动态绑定onclick事件,事件点击多时无响应

JS 更改绑定事件的参数