在引导程序表详细信息视图中,每行中都有一个加号图标。我正在使用某些样式来删除该加号图标。然后,它也会影响其他表。在其他表中,整个表的第一列也会获取皮革。我能告诉我一个解决方案吗?

.detail-view-table thead > tr > th.detail,
.detail-view-table tbody > tr:not(.detail-view) > td:first-of-type {
display: none;
}
.detail-view-table thead > tr > th:nth-child(2),
.detail-view-table tbody > tr:not(.detail-view) > td:nth-child(2) {
border-left: none!important;
}

最佳答案

我建议您使用parent child选择器CSS,从而需要为表的父元素声明class

例如,如果表位于div内,则添加一个名为class.hide并将其作为父表,然后选择子表。



.hide .detail-view-table thead > tr > th.detail,
.hide .detail-view-table tbody > tr:not(.detail-view) > td:first-of-type {
display: none;
}


这样做不会影响其他表,但是会影响您要受影响的表。

这将为您提供所需的东西。
希望这可以帮助。

关于javascript - 引导表详细信息 View 否加号图标,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37185409/

10-12 18:15