gpt4 book ai didi

javascript - 查找表格标题单元格值(第一列)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:36:54 25 4
gpt4 key购买 nike

我有一个 HTML 表格,如 http://jsfiddle.net/Lijo/sP7zD/ 中所列。 .我需要读取第一列标题的值。我正在用“gt”和“lt”运算符来做这件事。但它没有获得第一列值。

  1. 需要在我编写的脚本中更改哪些 jQuery 代码?
  2. 读取第一列标题值的更好方法是什么?

代码

<input type="submit" value="Alert" class="alertButton"/>


<table class="resultGridTable" cellspacing="0" id="detailContentPlaceholder_grdLocalTaxReport"
style="border-collapse: collapse;">
<tr>
<th scope="col">
IsSummaryRow
</th>
<th scope="col">
Associate
</th>
<th scope="col">
Gross Amount
</th>
<th scope="col">
Federal Withholding
</th>


</tr>
<tr>
<td>
False
</td>
<td>
Norman Tylor
</td>
<td>
3450
</td>
<td>
32
</td>
</tr>
</table>

<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.4.1.js"></script>

脚本

$('.alertButton').click(function() {                                                  
var selectedElements = $("tr").find("th:gt(0):lt(1)");
$(selectedElements).css('background-color','yellow');
alert(selectedElements.html());
});

最佳答案

使用$('th:first')

var selectedElements = $("th:first");

Here is the demo

对于您的代码:改为使用 eq

var selectedElements = $("tr").find("th:eq(0)");

关于javascript - 查找表格标题单元格值(第一列),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12490763/

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