当前位置: 编程技术>WEB前端
jquery数组之存放checkbox全选值示例代码
来源: 互联网 发布时间:2014-08-25
本文导语: 代码如下: 全选/全部不选 1 2 3 4 $("#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]"...
代码如下:
全选/全部不选
1
2
3
4
$("#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