我想改变这个 JS 对象。我目前有:
for(var i = 0; i < destination_categories_selected.length; i++)
{
destination_categories_obj[i] = {
"category" : $(destination_categories_selected[i]).data("dkDropdownValue")
}
}
哪些输出和对象看起来像
[0] => "category" : 1,
[1] => "category" : 2,
[2] => "category" : 3
我可以这样做,以便将类别完全删除为:
[0] => 1,
[1] => 2,
[2] => 3