如何使用jquery遍历复选框列表?

时间:2012-10-28 22:20:46

标签: jquery

如何使用jquery遍历一个复选框列表?这是代码...

         $("input:checked").parent().find("strong").text();

试过这个但没有工作......

         $("input:checked").parent().find("strong").text().each(function()
         {
             alert(this);
         });

1 个答案:

答案 0 :(得分:0)

$.each($('input[type=checkbox]'), function(){
   doSomething();
});