老师的代码是不是要加一句?
// 老师的代码是不是要加一句?:
on: function(type,handler){
if(this.handlers[type]==='undefined'){
this.handlers[type]=[]
//这是多加的一句,不然绑定多个名称相同的事件时总是少一个
this.handlers[type].push(handler)
}else{
this.handlers[type].push(handler)
} }
// 老师的代码是不是要加一句?:
on: function(type,handler){
if(this.handlers[type]==='undefined'){
this.handlers[type]=[]
//这是多加的一句,不然绑定多个名称相同的事件时总是少一个
this.handlers[type].push(handler)
}else{
this.handlers[type].push(handler)
} }
2018-09-28
举报