Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<h2>从服务器上的 PHP 文件获取 JSON 格式的数据。</h2>
<p>从 PHP 文件接收到的 JSON:</p>
<p id="demo"></p>
<script>
var obj, dbParam, xmlhttp;
obj = { "limit":10 };
dbParam = JSON.stringify(obj);
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
  if (this.readyState == 4 && this.status == 200) {
    document.getElementById("demo").innerHTML = this.responseText;
  }
};
xmlhttp.open("GET", "json_demo_db.php?x=" + dbParam, true);
xmlhttp.send();
</script>
</body>
</html>