Maison >interface Web >js tutoriel >jquery数组之存放checkbox全选值示例代码_jquery

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

WBOY
WBOYoriginal
2016-05-16 17:08:021032parcourir
复制代码 代码如下:

全选/全部不选
1
2
3
4


<script> <BR>$("#chekcAll").click(function(){ <BR>if(this.checked){ <BR>$("input[name=items]").attr("checked","checked"); <BR>} <BR>else{ <BR>$("input[name=items]").attr("checked",null); <BR>} <BR>}) <BR>function show(){ <BR>var strIds=new Array();//声明一个存放id的数组 <BR>$("input[name=items]").each(function (i,d){ <BR>if (d.checked) { <BR>strIds.push(d.value); <BR>} <BR>}) <BR>if(strIds.length<1) <BR>alert("您没有选中项!"); <BR>else{ <BR>var ids=strIds.join(","); <BR>alert("你选中的字符串有:"+ids); <BR>} <br><br><BR>} <br><br></script>
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn