阅读以下JavaScript代码后,回答问题。

发布于 2022-03-02 13:39:50

阅读以下JavaScript代码:
 if (window.addEventListener) {
        var addListener = function(el, type, listener, useCapture) {
            el.addEventListener(type, listener, useCapture)
        }
    } else if (document.all) {
        addListener = function(el, type, listener) {
            el.attachEvent("on" + type, function() {
                listener.apply(el)
            })
        }
    }
请阐述 a) 代码的功能 b) 代码的优点和缺点 c) listener.apply(el) 在此处的作用 d) 如果有可改进之处,请给出改进后的代码,并说明理由。
关注者
0
被浏览
21
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看