事件委托的封装 function eveEnt(child,cb){ return function(eve){ var e = eve || window.event; var mubiaoEle = e.target || e.srcElement; for(var i = 0;i<child.length;i++){ if(child[i]==mubiaoEle){ cb.bind(mubiaoEle)(); } } } } 事件监听式绑定事件 function addEvent(ele,type,cb){ if(e