我这个for循环是遍历了所有li标签 也就是所有aLi绑定了事件,让他的菜单延迟消失300毫秒,有什么好的办法呢?
for(var i = 0,len = aLi.length;i<len;i++){
aLi[i].onmouseout = function(){
(function(i){
timer = setTimeout(function(){
aLi[i].children[1].style.display = 'none';
},300);
})(i);
相关分类