“XMLHttpRequest无法加载http://.com/。Access-Control-Allow-Origin不允许使用Origin http://.ru。”

时间:2013-09-13 12:32:56

标签: xmlhttprequest

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

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/"));

0 个答案:

没有答案