我有这个代码:
$.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()
项目设置,而不是这个,我该怎么做?
谢谢你。