sto creando la seguente tabella in modo dinamico utilizzando jQuery ... Dopo aver eseguito il mio codice ottengo la tabella come di seguito:Come scorrere un tavolo righe e ottenere i valori delle celle utilizzando 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>
ho usato per iterare la tabella come questa:
$("tr.item").each(function() {
var quantity1 = $this.find("input.name").val();
var quantity2 = $this.find("input.id").val();
});
utilizzando la query sopra sto ottenendo valori di solo le cellule prima fila ... aiutarmi con jQuery che scorrere le intere righe della tabella e ottenere i valori delle celle delle righe in quantity1
e quantity2
.
ciò che è '$ this' – epascarello