全选与取消【jQuery实例】

时间:2022-12-03 00:08:02
//页面部分
<label style="color:#444;">全选:</label><input type="checkbox" onclick="selectall()" id="check_box" title="全选">
//全选jQ部分
function selectall()
{

if($('#check_box').prop('checked'))
{
$(':checkbox').prop('checked', true);
}else{
$(':checkbox').prop('checked', false)
}
}
//第二种方法
function selectAll(){
var obj=document.getElementById('check_box');
if(obj.checked==true){
$('form#group_list_info input[type="checkbox"][name="groupids[]"]').each(function(index,element){
this.checked=true;
})
}else{
$('form#group_list_info input[type="checkbox"][name="groupids[]"]').each(function(index,element){
this.checked=false;
})
}
}