0

我有下表

<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>

4

2 回答 2

1

试试这个dom函数:

document.getElementsByTagName("th")[0].getAttribute("col");
于 2013-03-29T09:02:31.457 回答
0
$(document).ready(function () {
      console.log($('table thead tr th').attr('col'));

});

这将给第一个 tr 你可以做的是检查行数或使用 foreach 循环

于 2013-03-29T09:09:29.650 回答