0

我看到很多关于它的帖子,但没有适合我的解决方案。这只是错误。我应该怎么办?我的网络服务器上有脚本,但无法访问 url。

function httpGet(theUrl)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
        return xmlhttp.responseText;
    }
}
xmlhttp.open("GET", theUrl, false );
xmlhttp.send();    
}
document.write(httpGet("http://stackoverflow.com/"));
4

0 回答 0