开发者

How to get values of <input type="checkbox" /> that are checked?

There are multiple <input type="checkbox" value="..." /> in the page.

I need to get each of the <in开发者_JAVA技巧put> that is checked to do some operation.

I'm using jQuery.


$("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() );
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜