原生Jsはあるノードの後ろの最初のラベルを取得します.

1402 ワード


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');

}

}