gpt4 book ai didi

jquery - 使用 jquery 通过 ID 获取第 tfoot 个值

转载 作者:行者123 更新时间:2023-12-05 08:59:59 24 4
gpt4 key购买 nike

请看以下内容:

<table border="0" id="npoGridView">
<thead>
<tr>
<th>Quantity Order</th>
<th>Cost P.U</th>
<th>Total</th>
</tr>
</thead>
<tbody>
//TD .......
</tbody>
<tfoot>
<tr>
<th>Quantity Order</th>
<th>Cost P.U</th>
<th id="15">Total</th>
</tr>
</tfoot>
</table>

我已经在 tfoot 中为 th 提供了 id(即 id="15"),现在我想使用 jquery 获取 th 值.

如何使用 jquery 获取特定的 th 值表单页脚?

最佳答案

$('#npoGridView tfoot').each(function() {
console.log($('th', this).text());
});

获取任何特定th的值喜欢<th id="15">Total</th> ;

$('tfoot th#15').text();

可以得到th的值像下面这样:

$('tfoot th:eq(0)').text(); // output: Quantity Order

$('tfoot th:eq(1)').text(); // output: Cost P.U

$('tfoot th:eq(2)').text(); // output: Total

你可以使用 .text().html()如您所愿。

更新 th 的值然后使用:

$('tfoot th#15').html($grandTotal);

$('tfoot th#15').text($grandTotal);

注意 不要只使用数值作为 id .

关于jquery - 使用 jquery 通过 ID 获取第 tfoot 个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10775851/

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