2〜3個のテーブルを含むページがあります。これらのテーブルでは、特定の列のテキストと<thead>
各行の値を変更したいと考えており、各行<td>
から取得したいと考えていid
ます。
これを実行する最速の方法は何ですか?
HTML
テーブル レイアウト:
<table class="ms-viewtable">
<thead id="xxx">
<tr class ="ms-viewheadertr">
<th>
<th>
<tbody>
<tr class="ms-itmHover..." id="2,1,0">
<td>
<td>
<tr class="ms-itmHover..." id="2,2,0">
<td>
<td>
</table>
JavaScript
私が始めたスクリプト:
$('.ms-listviewtable').each(function () {
var table = $(this);
$table.find('tr > th').each(function () {
//Code here
});
$table.find('tr > td').each(function () {
//Code here
});
どうすればIDを取得できますか? これは私がやりたいことをするためのより良い方法ですか?