最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to get values of <input type="checkbox" > that are checked? - Stack Overflow

programmeradmin0浏览0评论

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 badges
Add a ment  | 

2 Answers 2

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() );
});
发布评论

评论列表(0)

  1. 暂无评论