0

AJAX を使用してページのコンテンツを取得しようとしていますが、結果が得られません。

これはコードです:

<script type="text/javascript">
function onSumResponse() {
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()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","http://www.arihav.com/",true);
xmlhttp.send();
}

</script>

そして、これは本体の div です。

<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="onSumResponse()">Change Content</button>

クリック後に得られるのは空のdivです。

編集:このコードはw3schoolsから取得されました

編集 2:これは動作する vbscript のコードです。

GotothisURL = "http://www.arihav.com"
Set GetConnection = CreateObject("Microsoft.XMLHTTP")
GetConnection.Open "get", GotothisURL, False
GetConnection.Send
ResponsePage = GetConnection.responseText
4

1 に答える 1

0

別のホストに curl または JSON を使用するよう要求する場合、オリジン ポリシーにより、AJAX は別のサーバーへのアクセスを許可されません。

于 2012-07-08T14:52:17.710 に答える