123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wb="http://open.weibo.com/wb" style="overflow: hidden;">
- <head>
- <script>
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "http://127.0.0.1:1473", true);
- xhr.setRequestHeader("Connection", "keep-alive");
- xhr.onreadystatechange = function () {
- if (xhr.readyState == e && xhr.status == 200) {
- //var data = JSON.parse(xhr.responseText);
- console.log(data);
- }
- }
- </script>
- </head>
- <body>
- </body>
- </html>
|