我有一個表,我填充一些數據,除了每個複選框,最後一個複選框是「全部」。 當我檢查這個「ALL」複選框時,應該選中複選框,反之亦然。如何做選擇所有當選中一個複選框
填充數據的代碼。
<div class="tablecontatiner">
<table>
<tr>
<th>Function</th>
<th>Add</th>
<th>Edit</th>
<th>View</th>
<th>Delete</th>
<th>All</th>
</tr>
@foreach (var item in Model)
{
<tr class="grouprow">
<td><input type="hidden"/><input id="@(item.Func_Code)" type="checkbox" style="visibility:hidden" />@item.FunctionName</td>
<td><input id="@(item.Func_Code + "A")" type="checkbox" value="Add" @(item.Add==true?"checked":"") /></td>
<td><input id="@(item.Func_Code + "E")" type="checkbox" value="Edit" @(item.Edit==true?"checked":"") /></td>
<td><input id="@(item.Func_Code + "V")" type="checkbox" value="View" @(item.View==true?"checked":"")/></td>
<td><input id="@(item.Func_Code + "D")" type="checkbox" value="Delete" @(item.Delete==true?"checked":"")/></td>
<td><input id="@(item.Func_Code + "ALL")" type="checkbox" value="All"/></td>
</tr>
}
</table>
</div>
和我的UI看起來像:
什麼是#chekcboxAll她...該複選框的ID?或值或複選框? – Santosh
應該檢查/取消選中全部的複選框的ID – Anton
嘗試了您的演示...但沒有爲我取消選中任何一個checkbox.the所有複選框應該取消選中 – Santosh