CheckBoxList 全选(jquery版本)

CheckBoxList 全选(jquery版本)
 function selectedAll(allselect, obj) {
            $("#"+obj.id+" input:checkbox").each(function () {
                if (allselect.checked)
                    $(this).attr("checked", true);
                else {
                    $(this).attr("checked", false);
                }
            });
        }
CheckBoxList 全选(jquery版本)

调用

CheckBoxList 全选(jquery版本)
<input id="allCheck" onclick="selectedAll(this, document.getElementById(‘cbl_cg‘))" type="checkbox" name="allCheck" />全选/反选
CheckBoxList 全选(jquery版本)

 

CheckBoxList 全选(jquery版本),布布扣,bubuko.com

CheckBoxList 全选(jquery版本)

上一篇:GSON方式生成和解析json数据


下一篇:asp.net 获得客户端 mac 地址