帮忙看一下,为什么写完for循环就看不到下拉列表?
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';
}
}