问答详情
源自:5-1 编程挑战

帮忙看一下,为什么写完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';

          }

      }


提问者:慕粉13727861792 2018-01-20 12:48

个回答

  • YukiMiku
    2018-01-25 21:16:03
    已采纳

    for循环的i变量没赋值