2
我已經開始建設自己的網站2個星期前,至今已經學會了HTML,CSS和一點的javascrip的,但我不能似乎能夠得到下面的代碼爲我的網站工作:不能讓我的jsonp工作。我在這裏做錯了什麼?
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.getJSON("http://blockchain.info/ticker?callback=?",function(result){
document.getElementById("testspan").innerHTML=result.EUR.last;
});
});
</script>
</head>
<body>
<ul>
<li>test: <span id="testspan">test</span>
</ul>
</div>
基本上想要的是從「http://blockchain.info/ticker」中獲取數據以顯示在我的列表項中。但只有EUR.last的具體價值。
很多thx提前!