如何仅从一个 <th></th> table 中删除前后箭头?
How do I remove the before and after arrow only from one <th></th> table?
我正在尝试从第一个 <th>#</th>
中删除 伪 Css class(之前和之后)
标签,来自 table (bootstrap and responsive Datable plugin)... 有没有办法使用我不知道... javaScript --> Jquery?
这张图片会清楚地说明...
image
这个问题需要更多的解释。
例如,如果您使用DataTables.net开发的JS插件,则排序标记是背景图像。在这种情况下,在页面末尾添加一个样式元素来销毁它们就足够了。
<style>
.sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
background-image:unset !important;
}
</style>
我正在尝试从第一个 <th>#</th>
中删除 伪 Css class(之前和之后)
标签,来自 table (bootstrap and responsive Datable plugin)... 有没有办法使用我不知道... javaScript --> Jquery?
这张图片会清楚地说明... image
这个问题需要更多的解释。
例如,如果您使用DataTables.net开发的JS插件,则排序标记是背景图像。在这种情况下,在页面末尾添加一个样式元素来销毁它们就足够了。
<style>
.sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
background-image:unset !important;
}
</style>