jQueryを使用して以下のテーブルを動的に作成しています...コードを実行した後、次のようにテーブルを取得します。
<table id="TableView" width="800" style="margin-left: 60px">
<tbody>
<tr>
<th>Module</th>
<th>Message</th>
</tr>
<tr class="item">
<td> car</td>
<td>
<input class="name" type="text">
</td>
<td>
<input class="id" type="hidden" value="5">
</td>
</tr>
<tr class="item">
<td> bus</td>
<td>
<input class="name" type="text">
</td>
<td>
<input class="id" type="hidden" value="9">
</td>
</tr>
私はこのようにテーブルを繰り返していました:
$("tr.item").each(function() {
var quantity1 = $this.find("input.name").val();
var quantity2 = $this.find("input.id").val();
});
上記のクエリを使用して、最初の行のセルの値のみを取得しています...テーブルの行全体を反復処理し、行のセルの値を取得する jQuery を使用して、quantity1
とquantity2
.