从数据库获取 JSON

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h1>通过服务器上的 PHP 获取 JSON 数据</h1>
  6.  
  7. <p>从 PHP 文件接收的 JSON:</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. var xmlhttp;
  13. xmlhttp = new XMLHttpRequest();
  14. xmlhttp.onreadystatechange = function() {
  15. if (this.readyState == 4 && this.status == 200) {
  16. document.getElementById("demo").innerHTML = this.responseText;
  17. }
  18. };
  19. xmlhttp.open("GET", "/demo/demo_json_db.php", true);
  20. xmlhttp.send();
  21. </script>
  22.  
  23. </body>
  24. </html>