我想用 获取选中复选框的值,name="car_type[]"
并用所有值提醒最终数组。怎么做?到目前为止,我有这个代码。但它不起作用。我不知道如何正确循环检查复选框并将值添加到数组car_type_arr
中。我也无法使用alert(car_type_arr);
. 谢谢你的帮助。
$().ready(function(){
$('.prettycheckbox').click(function(e) {
e.preventDefault();
var car_type_arr = [];
$("input:checkbox[name=car_type]:checked").each(function()
{
// here I need to add values to array like in php
// e.g. $car_type_arr[] = $the_grabbed_value;
// but using javascript syntax
// How to do that?
});
// then I need to alert the array, how to do that in JS?
alert(car_type_arr);
return false;
});
});