欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery数组之存放checkbox全选值示例代码

程序员文章站 2022-06-19 21:38:19
代码如下:

代码如下:


<input type="checkbox" id="checkall" value="1">全选/全部不选
<input type="checkbox" name="items" value="1">1
<input type="checkbox" name="items" value="2">2
<input type="checkbox" name="items" value="3">3
<input type="checkbox" name="items" value="4">4
<input type="checkbox" name="items" value="5">
<input type="button" onclick="show()" value="提示选择的">
<script>
$("#chekcall").click(function(){
if(this.checked){
$("input[name=items]").attr("checked","checked");
}
else{
$("input[name=items]").attr("checked",null);
}
})
function show(){
var strids=new array();//声明一个存放id的数组
$("input[name=items]").each(function (i,d){
if (d.checked) {
strids.push(d.value);
}
})
if(strids.length<1)
alert("您没有选中项!");
else{
var ids=strids.join(",");
alert("你选中的字符串有:"+ids);
}


}

</script>