gpt4 book ai didi

java - 如何从表中获取属性

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

我有下表

<table>
<thead>
<tr>
<th col="value2"></th>
</tr>
</thead>
<tbody>
<tr id="value1">
<td></td>
</tr>
</tbody
<table>

我使用下面的方法从 <tr> 获取“value1”

"row_id": this.parentNode.getAttribute('id')

我正在尝试使用下面的方法从 <th> 获取 col 值但它返回一个空值。

"colName": this.getAttribute('col')

如何正确从 <th> 获取 col 属性值?

最佳答案

尝试这个 dom 函数:

document.getElementsByTagName("th")[0].getAttribute("col");

关于java - 如何从表中获取属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15700170/

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