gpt4 book ai didi

jquery - 数据表插件 : if not sortable remove text-decoration from column header

转载 作者:行者123 更新时间:2023-11-28 11:58:09 25 4
gpt4 key购买 nike

我正在使用 DataTables 插件,并且在某些列上我设置了 "bSortable": false。在这些相同的列上,我还想从列标题中删除文本下划线和光标指针。

我创建了一个名为 removeFormat 的类,我只想将其应用于列标题。

.removeFormat {
text-decoration: none;
cursor: auto;
}

我该怎么做?

我希望我可以使用类似sClass 的东西。不幸的是,这只会将类添加到表格单元格。

如果创建 CSS 类并将其添加到列标题不是我应该进入的正确方向,DataTables 是否有一个标准方法可以用于此特定目的?

更新:

我想直接向我有兴趣更改的列添加一个函数。例如:

           {
"mData": null,
"sWidth": "5%",
"bSortable": false,
"sClass": "alignCenter"
}

最佳答案

经过一番尝试,我找到了答案。

在我的例子中,sClass 将该类应用于表格单元格和表格标题。所以我只需要将类添加到列表中:

"sClass": "alignCenter removeFormat"

我还确保我的类足够具体,它仅适用于表格标题,并且适用于悬停时的元素:

th.removeFormat div:hover {}

那修好了!

关于jquery - 数据表插件 : if not sortable remove text-decoration from column header,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20011276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com