我正在尝试发出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>
答案 0 :(得分: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文档。
答案 1 :(得分:0)
你需要
xhr.onload = function() { //onload
document.getElementById("myDiv").innerHTML=xhr.responseText;
}