多选按钮全选 反选
input[name='scids'] 表示改组多选按钮
//全选
function chooseall(){
$("input[name='scids']").attr("checked",true);
}
//反选
function chooseother(){
$("input[name='scids']").each(function(){
if($(this).attr("checked") == true){
$(this).attr("checked",false);
}else{
$(this).attr("checked",true);}
});
}