xhr.responseText を変数にしてから警告しようとしていますが、奇妙な理由でそうすることができません。
test2 = ""
function process(){
url = "http://www.example.com/example.html"
var xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4){
test2 = xhr.responseText
}
}
xhr.send();
}
process();
alert(test2);
この問題について助けてくれる人に感謝します。