gpt4 book ai didi

javascript - 获取数据表中 TD 的 TH

转载 作者:行者123 更新时间:2023-12-03 11:52:16 25 4
gpt4 key购买 nike

如何在数据表中获取 TD 的 TH?现在我有一个代码,可以用来向数据表上的 TD 添加属性:

"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull) {
$('td', nRow).attr("title","PUMMM");
//takes the tds from the row and assigned title attribute
}

我想要做的是根据特定 td 具有的 header 放置不同的属性。

最佳答案

你的意思是这样的吗?抱歉,我不知道这个插件...

var columNumber = 0; 
"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull) {
$('td, th', nRow).each(function(){
var $this = $(this);
if($this[0].tagName == "TD"){
switch(columnNumber)
{
case 0:
$this.attr("title","Column 0");
break;

case 1:
$this.attr("title","Column 1");
break;
.
.
.
.

}
columnNumber++;
}

});
}

关于javascript - 获取数据表中 TD 的 TH,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25773830/

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