如何使用 jquery 从 TD 文本(遗留数据 table )在每个 table TD 中设置标题?
How to set title in each table TD from TD text ( legacy datatable ) using jquery?
所以问题是,在遗留 jquery 数据表(不是它的 "new" 版本)中,我如何在单元格 (td) 上设置标题及其内容?
这是代码:
在数据表的属性中($("#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());
});
});
},
...
所以问题是,在遗留 jquery 数据表(不是它的 "new" 版本)中,我如何在单元格 (td) 上设置标题及其内容?
这是代码:
在数据表的属性中($("#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());
});
});
},
...