window.onload=function(){? ??? ??? ? var linodes = document.getElementById("ul1");? ? var linode = linodes.childNodes;? ??? ? var tagnode = document.getElementById("tab-list").childNodes;? ? ?for(i=0;i<linode.length;i++){? ? ? ? ?linode[i].index = i ;? ? ? ? ?linode[i].onmouseover = function(){? ? ? ? ? ? ?change(this.index);? ? ? ? ?}? ? ?}// JS實現(xiàn)選項卡切換? ?? ? ?}? ? ?function change(i){? ? ? ? for(j=0;j<linode.length;j++){? ? ? ? ? ? if(i===j){? ? ? ? ? ? ? ? linode[j].setAttribute("class","active");? ? ? ? ? ? ? ? tagnode[(j+1)].setAttribute("class","");? ? ? ? ? ? ? ? }? ? ? ? ? ? else {? ? ? ? ? ? ? ? linode[j].setAttribute("class","");? ? ? ? ? ? ? ? tagnode[(j+1)].setAttribute("class","hide");? ? ? ? ? ? }? ? ? ? }??? ? }
這樣還是不行?
brogii
2016-09-05 21:43:47