我想要一個HTML元素從ajax quire更新到PHP文件,但它不工作。 我的代碼如下json ajax更新HTML元素不能正常工作
<html>
<head>
<script src="jquery-3.1.0.min.js"></script>
</head>
<body>
<script>
var json = (function() {
\t var json = null;
$.ajax({
url: "test.php",
dataType: "json", //the return type data is jsonn
success: function(data){ // <--- (data) is in json format
json = data.test;
\t \t $('#demo').text(json.test1);
\t }
});
return json;
})();
</script>
<p id="demo"></p>
</body>
</html>
PHP代碼
<?php
header("Content-Type: application/json");
$test = array();
$test['test1'] = '1';
$test['test2'] = '2';
$test['test3'] = '3';
echo json_encode($test);
//echo nothing after this //not even html
?>
可有人請幫忙,謝謝
感謝這個工作,我想我不得不把它變成一個變量。 – user2669997