0

我正在尝试发出 API 请求并将返回值放入 div 中。我做错了什么?

<!DOCTYPE HTML>
<html>
<head>
<script>
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://data.mtgox.com/api/2/BTCUSD/money/ticker_fast?pretty", false);
xhr.send();

xhr = function() {
document.getElementById("myDiv").innerHTML=xhr.responseText;
}

</script>
</head>
<body>
<div id="myDiv"></div>

</body>
</html>
4

2 回答 2

0

您需要绑定到onload侦听器而不是将值设置为xhr

var xhr = new XMLHttpRequest();
xhr.open("GET", "http://data.mtgox.com/api/2/BTCUSD/money/ticker_fast?pretty", false);
xhr.onload = function() {
  document.getElementById("myDiv").innerHTML=this.responseText;
};
xhr.send();

请参阅有关使用XMLHttpRequest的 MDN 文档。

于 2013-09-09T11:41:49.207 回答
0

你需要

xhr.onload = function() { //onload
   document.getElementById("myDiv").innerHTML=xhr.responseText;
}
于 2013-09-09T11:41:54.163 回答