我有一个表,每行都有复选框。在选择该行的地方,我想获取该行的列值。
<table id="tblBrowse">
<thead>
<tr role="row">
<th>
<input type="checkbox" id="chkboxBrowseSelectAll" value="">
</th>
<th>Order No</th>
<th>Ship To</th>
<th>Sold To</th>
</tr>
</thead>
<tbody>
<tr role="row" class="odd">
<td>
<input type="checkbox">
</td>
<td class="sorting_1">1959-01</td>
<td>123</td>
<td>456</td>
</tr>
<!-- And lots more of the same thing -->
</tbody>
</table>
我可以获取选中的复选框,但如何获取值 123 和 456?
$('#btnTest').click(function () {
var checkedBoxes = document.querySelectorAll('input[type="checkbox"]:checked');
// Where do I go from here?
});
我可以使用 jQuery 或纯 JS,但必须与 IE 兼容。
郎朗坤
浮云间
相关分类