如何使用jquery遍历一个复选框列表?这是代码...
$("input:checked").parent().find("strong").text();
试过这个但没有工作......
$("input:checked").parent().find("strong").text().each(function()
{
alert(this);
});
答案 0 :(得分:0)
$.each($('input[type=checkbox]'), function(){
doSomething();
});