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を追加した後、データを取得または送信できません...
私は何が間違っているのですか?