我有以下代码:
<select id="deloptions">
<option value="none">Select none</option>
<option value="all">Select all</option>
</select>
我正在尝试检查所有这些并取消选中放置在此选择之后的表格中的所有复选框。复选框位于表格的第一列。他们都有“delme”类。我已经尝试了一切,但似乎没有用......这是我当前的代码:
$('#deloptions').change(function(){
var value = $(this).val();
if (value == 'all') {
$('input:checkbox').prop('checked', true);
} else {
$('input:checkbox').prop('checked', false);
}
});
我也尝试过使用他们的课程,但没有成功......比如:
$('.delme').prop('checked', false);
试图伸手去拿桌子也没有用……所以我有点卡住了。
编辑:
<table>
<tr>
<th></th>
<th>Title</th>
<th>Content</th>
<th>Date Added</th>
<th>Actions</th>
</tr>
<tr id="37">
<td><input type="checkbox" class="delme" id="37"></td>
<td>Good news!</td>
<td>This is a message!</td>
<td>2013-07-22</td>
<td>Here is a button</td>
</tr>
</table>