我試圖在jQuery中創建一個'全選'樣式複選框。這裏是當前的標記:在jQuery中獲取包含表中的所有輸入
<table>
<thead>
<tr>
<th><input class='select-all' type='checkbox' /></th>
//etc..
</tr>
</thead>
<tbody>
<tr>
<td><input class='list-select' type='checkbox' /><td>
//etc..
</tr>
//more <tr>s..
</tbody>
</table>
什麼是讓所有的「列表中選擇」複選框,從選擇所有的複選框的Click事件的最簡單的方法?
$(".select-all").click(function() {
});
頁面上可能存在多於一個,所以它必須是相對的。即我不能只用$(".list-select")
不錯。我不知道「父母()」的功能。我曾嘗試使用'parent()'做類似的事情,但它不會那樣工作。另外,對於列表選擇檢查的附加偵聽器也是個好主意 – GSto 2012-01-10 19:07:23