pass value as array/collection
I have this code:
var addNew = $('#divListBox').find(':checked')
.map(function() {
return $(this).val();
}).get();
I want to know if there's a way to get all the value that's checked and put t开发者_高级运维hem in a collection so I can send it to my controller?
you can do this...
var v_coll=[];
$('#divListBox').find(':checked').each(function(){
v_coll.push($(this).val);
});
精彩评论