慕粉13727861792
2018-01-20 12:48
title.onclick=function(event){
// 执行脚本
event=event||window.event;
if(event.stopPropagation){
event.stopPropagation();
}else{
event.cancleBubble=ture;
}
menu.style.display='block';
}
// 滑过滑过、离开、点击每个选项时
// 执行脚本
for(int i,l=menu.length;i<l;i++){
menu[i].onmouseover=function(){
this.style.background='blue';
}
}
for循环的i变量没赋值
DOM事件探秘
99545 学习 · 1197 问题
相似问题