我想從PHP腳本返回一個json編碼的字符串。從服務器使用jQuery POST函數返回JSON數據
$.post("order.php", { product: product_id, coupon: coupon },
function(data) {
$("#price").html("$" + data.price);
$("#discount").html("$" + data.discount);
$("#total").html("$" + data.total);
});
我試圖用報警功能的回調,看看從PHP返回值:
{"price":249,"discount":"0.00","total":249}
但#price的價值和休息的元素是「$未定義」。
請幫助。
根據jQuery文檔'getJSON()'使用GET請求。 OP想要使用POST請求。 – Sirko