<script>
function loadXMLDoc()
{
var xmlhttp;
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()
{alert(xmlhttp.status);
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
//alert("SADF");
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
var url=document.getElementById("url").value;
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
<div id="myDiv"></div>
<input type="text" name="url" id="url"/>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
提前感谢...
答案 0 :(得分:-1)
您无法通过Javascript发出跨域请求。 有两种解决方案;
有关XDomainRequest的更多详细信息,请参阅此链接: