var data = {
'ids': $("input[name='ids\\[\\]']").map(function(){return $(this).val();}),
'price': $("input[name='price\\[\\]']").map(function(){return $(this).val();})
};
alert(data);
$.post("api/update_prices.php", {'data[]': data}, function (responseText) {
alert(responseText);
});
或者...
$.post("api/update_prices.php", data, function (responseText) {
alert(responseText);
});
警报数据正在输出一个 Object(对象)。我正在寻找 Stackoverflow,但它仍然无法正常工作。alert(responseText) 永远不会被调用。