2

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

这是代码...

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

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

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

1 回答 1

0
$.each($('input[type=checkbox]'), function(){
   doSomething();
});
于 2012-10-28T22:23:15.773 回答