如何从FieldSet中找到所选复选框

时间:2010-05-21 19:58:11

标签: jquery

我有一个字段集

<FieldSet>
<legnd>Studnetinfo</legend>
 <intpu type="checkbox">

  and here I am having StudnetId,FristName,lastname textboxes

</Fieldset>

 $('#btnAll').click(function() {
            $('#Details input[type=checkbox]').attr('checked', 'checked');
        });

点击按钮我正在检查所有复选框,我在提交的Filedset上有其他按钮。

当我提交点击时,我只需要发送从Fieldset中检查的内容吗?

1 个答案:

答案 0 :(得分:1)

这是一个有用的链接,似乎可以满足您的需求。

http://drupal.org/node/116548

从那篇文章:

$("input[@type=checkbox][@checked]").each(
function() {
   // Insert code here
  }
);