admin管理员组文章数量:1344678
There are multiple <input type="checkbox" value="..." />
in the page.
I need to get each of the <input>
that is checked to do some operation.
I'm using jQuery.
There are multiple <input type="checkbox" value="..." />
in the page.
I need to get each of the <input>
that is checked to do some operation.
I'm using jQuery.
Share Improve this question edited Nov 27, 2009 at 11:06 rahul 187k50 gold badges238 silver badges264 bronze badges asked Nov 27, 2009 at 5:14 MaskMask 34.2k48 gold badges106 silver badges127 bronze badges2 Answers
Reset to default 9$("input[type=checkbox]:checked").each ( function() {
alert ( $(this).val() );
});
or you can use
$("input:checkbox")
selector
If all the checkboxes are inside a container then you can narrow the selector by using
$("#containerID input[type=checkbox]:checked" )
You can also try this:
$(":checkbox :checked").each(function(){
alert( $(this).val() );
});
本文标签: javascriptHow to get values of ltinput typequotcheckboxquot gt that are checkedStack Overflow
版权声明:本文标题:javascript - How to get values of <input type="checkbox" > that are checked? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743738855a2530517.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论