jQuery 数据表 fnRender 行更改

发布于 2024-09-29 02:44:01 字数 465 浏览 2 评论 0原文

我想在渲染表格时向行添加一些类,示例代码:

$("#id").dataTable({
      bProcessing: true,
      sAjaxSource: com.mycompany.path.api.message[component],
      aoColumns: [
        {}, {},
        {
          sWidth: "37px",
          fnRender: function(obj) {
            return "<span>" + myData + "</span>";
          }
        }
      ]
});

在这个示例中,我只能控制“td”标签,但我想根据我在 fnRender( 中获得的数据) 为“tr”标签添加一些类) 循环中。 我怎样才能用数据表做到这一点?

谢谢,

I want to add some class to row when I render a table, sample code:

$("#id").dataTable({
      bProcessing: true,
      sAjaxSource: com.mycompany.path.api.message[component],
      aoColumns: [
        {}, {},
        {
          sWidth: "37px",
          fnRender: function(obj) {
            return "<span>" + myData + "</span>";
          }
        }
      ]
});

In this example I could only control "td" tags, but I want to add some class for "tr" tag based on data that I get in fnRender() in cycle.
How I can do it with datatables?

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文