如何使用jquery从TD文本(旧数据表)设置每个表TD中的标题?

问题描述 投票:0回答:1

所以问题是,在旧式jquery数据表中(不是它的“新”版本),我如何在单元格(td)上设置标题及其内容?

javascript jquery arrays datatable legacy
1个回答
0
投票

这是代码:

在数据表的属性中($(“#MySpecialDatatable”)。datatable({properties})):

...
"fnDrawCallback": function(oSettings) {                 
                $("#MySpecialDatatable tbody tr").each(function () {
                    var nTds = $('td', this);
                    $(nTds).each(function () {
                        var td = this;
                        td.setAttribute('title', $(td).text());
                    });
                });
            },
    ...
© www.soinside.com 2019 - 2024. All rights reserved.