最後にチェックボックス列があるテーブルがあります。
HTML
<table border="1">
<thead>
<tr>
<td>Name</td>
<td>Amount</td>
<td>Selected Rows</td>
</tr>
</thead>
<tbody>
<tr>
<td>Item 1</td>
<td>5.0</td>
<td><input type="checkbox" checked="checked"/></td>
</tr>
<tr>
<td>Item 2</td>
<td>3.0</td>
<td><input type="checkbox" checked="checked"/></td>
</tr>
<tr>
<td>Item 3</td>
<td>4.0</td>
<td><input type="checkbox" checked="checked"/></td>
</tr>
</tbody>
</table>
Total : $<input type="text" value="12.0" />
Jクエリ
$('input[type=checkbox]').change(function(){
alert($(this).parent().parent().text());
});
チェックボックスを使用して選択した行に基づいて合計値を計算したい。このコード$(this).parent().parent().text();
は、行全体のテキスト値を提供します。金額列の値だけを取得するには?