1

我使用库 enquire.js,很好的库,但是在 ie8 中有一些问题。控制台在文件 enquire.js 中有消息“对象不支持属性或方法 addListener”,好的,使用 google 并找到解决方案:

if("addEventListener" in this.mql) {
        this.mql.addListener(this.listener);
    } else {
        this.mql.attachEvent('onclick', function(){
            console.log('ssss');
            this.listener;
    });
}

好的,现在,我收到消息“对象不支持属性或方法 attachEvent”。有任何想法吗?

4

0 回答 0