获取select全选和全不选

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");
                }
            });
        });
    }

 

posted @ 2018-05-16 13:44  西湖看雪  阅读(299)  评论(0)    收藏  举报