私はこのコードを持っています:
$.each(this.items, function(key, item) {
item = $(item);
item.css('background', 'red');
item.next().css('display', 'none');
}
今、純粋なJavaScriptで書き直す必要があるので、これをやっています
document.getElementById(aItems[iCount].id).style.background = 'red';
document.getElementById(aItems[iCount].id).style.display = 'none';
問題は、これではなくアイテムにdisplay:none
設定する必要があることnext()
です。どうすればよいですか?
ありがとうございました。