if ($this).is(':checked')) {
//全选中
$('select[name="zongkaiguan"]').each(function(){
$(this).find("option").removeAttr("select",true);//移除所有选中
$(this).find("option").each(function(){//在根据条件选中
if ($(this).val() == "1"){
$(this).attr("selected","selected");
}
});
});
} else {
//全部选中
$('select[name="zongkaiguan"]').each(function(){
$(this).find("option").removeAttr("select",true);//移除所有选中
$(this).find("option").each(function(){//在根据条件选中
if ($(this).val() == "0"){
$(this).attr("selected","selected");
}
});
});
}