为了账号安全,请及时绑定邮箱和手机立即绑定

跟着老师打代码,游览器提示‘addEventListener’为空

(function(){

var Menubar=function(){

this.el=document.querySelector('#sidebar ul');

this.state='allClosed';

this.el.addEventListener('click',function(e){//提示‘addEventListener’为空

e.stopPropagation();

});

}

var Sidebar=function(eId,closeBarId){

this.state='opened';

this.el=document.getElementById(eId||'sidebar');

this.closeBarEl=document.getElementById('closeBarId'||'closeBar ');

var self=this;

this.menubar=new Menubar();

this.el.addEventListener('click',function(event){

if(event.target!==this.el){

self.triggerSwich();

}

});

};

Sidebar.prototype.close=function(){

console.log('关闭');

this.state='closed'

};

Sidebar.prototype.open=function(){

console.log('打开');

this.state='opened';

};

Sidebar.prototype.triggerSwich=function(){

if(this.state==='opened'){

this.close();

}else{

this.open();

}

};

var sidebar=new Sidebar();

})();

Uncaught TypeError: Cannot read property 'addEventListener' of null

正在回答

1 回答

打印一下 this.el 你就知道错在哪边了


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

跟着老师打代码,游览器提示‘addEventListener’为空

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信