<label style="color:#444;">全选:</label><input type="checkbox" onclick="selectall()" id="check_box" title="全选">
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;
})
}
}