post.js
$.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 后,我无法检索或发送数据...
我究竟做错了什么?