0

我有多个具有唯一 ID 的表单,并且具有相同的复选框元素集。我想使用 jQuery 获取数组中的复选框 id 列表并将其发送到参数为 IEnumberable 类型的 mvc 操作。

我在 jQuery 中使用下面的代码来获取表单内的选中复选框,但没有成功。谁能帮我解决这个问题?

        var test = $("#11form input[type='checkbox']:checked");
        alert(test.length);  

提前致谢

4

1 回答 1

1
var test = $("#11form input[type='checkbox']:checked");

var ids = test.map(function() {
  return this.id;
}).toArray();

演示

于 2012-08-14T11:26:33.467 回答