运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>Get JSON Data from a PHP Server</h2> <p>The JSON received from the PHP file:</p> <p id="demo"></p> <script> const dbParam = JSON.stringify({"limit":10}); const xmlhttp = new XMLHttpRequest(); xmlhttp.onload = function() { document.getElementById("demo").innerHTML = this.responseText; } xmlhttp.open("GET", "json_demo_db.php?x=" + dbParam); xmlhttp.send(); </script> </body> </html>