gpt4 book ai didi

jquery - 获取 td 元素而不是其内容

转载 作者:行者123 更新时间:2023-12-01 07:09:14 25 4
gpt4 key购买 nike

这段代码取自here

// Fetch the table's data and store it in a dictionary (assoc array).
if (!table.tBodies.length) { return; }// No data in table.
var tablebody = table.tBodies[0];
var cellDictionary = [];

for (var y = 0, row; row = tablebody.rows[y]; y++)
{
var cell;

if (row.cells.length)
{
cell = row.cells[column];
}
else
{ // Dodge Safari 1.0.3 bug
cell = row.childNodes[column];
}

cellDictionary[y] = [TableSort.dom2txt_(cell), row];
}

正如注释行所说,它获取单元格内容然后对其进行排序。我想要它做的是获取元素(是你所说的吗?)值,例如

<td actual_value="0">1/1/1970</td>

在上面的 td 中,它将获取值“0”而不是“1/1/1970”进行排序。这可行吗?

最佳答案

.getAttribute("actual_value");

或者使用 jQuery

.attr("actual_value");

关于jquery - 获取 td 元素而不是其内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31758323/

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