for(var i=0;i<lis.length;i++){
lis[i].index=i
lis[i].onclick=function(){
for(var n=0;n<lis.length;n++){
lis[n].className=""
divs[n].className="hide"
}
this.className="on";
divs[this.index].className="";
}
}这里把this改成lis[i]就不行了为什么
添加回答
举报
0/150
提交
取消