我有下表
<table>
<thead>
<tr>
<th col="value2"></th>
</tr>
</thead>
<tbody>
<tr id="value1">
<td></td>
</tr>
</tbody
<table>
我使用以下内容从<tr>
"row_id": this.parentNode.getAttribute('id')
我正在尝试使用以下内容从中获取 col 值,<th>
但它返回一个空值。
"colName": this.getAttribute('col')
我将如何正确获取 col 属性值<th>
?