我有这段代码:
var addNew = $('#divListBox').find(':checked')
.map(function() {
return $(this).val();
}).get();
我想知道是否有办法获取所有已检查的值并将它们放入集合中,以便将其发送给我的控制器?
答案 0 :(得分:1)
你可以这样做......
var v_coll=[];
$('#divListBox').find(':checked').each(function(){
v_coll.push($(this).val);
});