美文网首页
统一事件封装

统一事件封装

作者: 我食四条鱼 | 来源:发表于2017-12-04 21:42 被阅读0次
function A(obj, methodName) {
    return (function (e) {
        e = e || window.event;
        return obj[methodName](e, this);
    });
}

function D(elementId) {
    const el = document.getElementById(elementId);//获取DOM
    if (el) {
        el.onmouseover = A(this, 'doMouseOver');//统一事件封装,直接new

    }
}

D.prototype.doMouseOver = function (event, element) {
    console.log(element.name);
};

new D('ele');

相关文章

网友评论

      本文标题:统一事件封装

      本文链接:https://www.haomeiwen.com/subject/ohufixtx.html