正如我在标题中所写,xmlhttprequest不会发送请求。代码是非常基本的,我不知道为什么它不应该工作。这是:
window.onload = function() {
xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', 'http://www.google.com' , true);
xmlhttp.send(null);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
document.write(xmlhttp.responseText);
}
}
if (xmlhttp.readyState!=4) {
document.write(xmlhttp.readyState);
}
}
它只是在文档中写入“1”。我错过了一些明显的东西吗?