네 이 티 브 Js 노드 뒤에 있 는 첫 번 째 탭 가 져 오기

1432 단어 js

nextSlbling 속성 은 노드 뒤의 첫 번 째 노드 를 가 져 옵 니 다. (탭 텍스트 일 수 있 습 니 다)
가 져 온 노드 가 탭 노드 인지 텍스트 노드 인지 판단 합 니 다.
window.onload=function(){

var pagecount={$page_count};

document.getElementById('firsts').setAttribute('class','disabled');

document.getElementById('before').setAttribute('class','disabled');

var current=document.getElementById('before').nextSibling;

while(current.nodeType != 1){        nodeType      

current=current.nextSibling;

}

current.setAttribute('class','current');

if(pagecount==1){

document.getElementById('next').setAttribute('class','disabled');

document.getElementById('last').setAttribute('class','disabled');

}

}

좋은 웹페이지 즐겨찾기