post.js
檢索POST數據備份AJAX/jQuery的
$.post(
"/scripts/update.php",
{id: testId, age: testAge},
function(data) {
$(".testDiv").html(data.testId);
$(".testDiv2").html(data.testAge);
},
"json"
);
update.php
$userId = $_POST["id"];
$userAge = $_POST["age"];
// contact database and retrieve user Id and user name...
echo json_encode(array("testId"=>$userId, "testAge"=>$userAge));
我如果我拿出, "json");
代碼,我可以將信息傳遞給update.php
得很好,但不能檢索任何數據。添加json後,我無法檢索或發送數據...
我在做什麼錯?
data.testId&data.testAge不從update.php回到那裏各自的值 – 2012-04-15 13:54:11