代碼: 選擇全部
//End Common Script End
$(function(){
//---全選----
$(".check_all").click(function(){
var checkbox1 = $(this).parent().find('input[id$="_Delete_1"]').prop("checked");
if (checkbox1) {
$(this).parent().find('input[id*="_Delete_"]').prop('checked', false);
} else {
$(this).parent().find('input[id*="_Delete_"]').prop('checked', true);
}
});
});
//End CCS script
代碼: 選擇全部
<input type='button' value='全選/全不選' class='check_all'>