我有两个dhtmlxSidebar,就像示例中一样在这里如何为嵌套的背景色设置不同的背景色?如果我添加css
.dhxsidebar_side {
background-color: # 427C9C !important;
}
它对两种背景都应用更改…
在您的情况下,主元素将是第一个元素[0]和嵌套的第二个元素[1]:(我设置了不同的蓝色)
document.getElementsByClassName("dhxsidebar_side")[0].style.backgroundColor = "#add8e6";
document.getElementsByClassName("dhxsidebar_side")[1].style.backgroundColor = "#d5f2fc";
你也可以应用简单和选定的项目bg颜色下一种方式:
.dhxsidebar_item {
background-color: #ffffff !important;
}
.dhxsidebar_item_selected {
background-color: #b5deff !important;
}