0
這看起來應該是直截了當的,但我不能得到它的工作。如何獲得<th>標籤的文本
HTML
<table id="mytable">
<thead>
<tr>
<th>Head1</th>
<th>Head2</th>
</tr>
</thead>
<tbody>
..body stuff..
</tbody>
</table>
JS
$("#mytable > thead > tr > th").each(function() {
console.log($(this).text();
})
控制檯顯示每個文本值 「未定義」。
你檢查在控制檯中發生錯誤?你只是缺少''''。 '的console.log($(本)的.text());' – dariru