我有一个字段集
<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中检查的内容吗?
答案 0 :(得分:1)
这是一个有用的链接,似乎可以满足您的需求。
从那篇文章:
$("input[@type=checkbox][@checked]").each(
function() {
// Insert code here
}
);