从 php 文件获取 JSON

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