0
頁
我scriptedHTTP.js
有:不能打印request.responseText到
var req = new XMLHttpRequest();
req.open("GET", "scripts/text.txt", true);
req.send(null);
var div = document.createElement('div');
div.innerHTML = req.responseText;
當我加載的頁面,瀏覽器控制檯顯示:
XHR finished loading: GET "http://localhost:8000/scripts/text.txt".
,但我得到的頁面上也沒有:
我該如何處理responseText
以便在頁面上顯示?
謝謝。
我加入YOUT代碼(更換我的代碼的最後一行),仍然什麼也沒有.. –
地方之後' var req = new XMLHttpRequest();',我建議你去[鏈接](http://stackoverflow.com/questions/14220321/how-to-return-the-response-from-an-asynchronous-call)所以你更瞭解它 –