如何將json值綁定到腳本並在html中需要輸出。我嘗試獲取天氣的數據和圖像,但沒有解決方案。幫我如何綁定腳本中的值並將其輸出到Html
這裏的jQuery
$(function(){
$.getJSON("http://query.yahooapis.com/v1/public/yql", {
q: "select * from json where url=\"http://api.wunderground.com/api/91bbc8aab3ab1f34/geolookup/conditions/q/IN/Chennai.json\"",
format: "json"
}, function(data) {
var $content = $("#content")
if (data.query.results) {
$content.text(JSON.stringify(data.query.results));
} else {
$content.text('no such code: ' + code);
}
});
});
代碼HTML中的樣品
<script type="text/javascript" src="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
內容股利和圖標是一個圖像標記
<div id="content">
<img id="weather_icon" />
當我運行應用程序只需要數據。我需要來自api的天氣圖像和數據。 請幫忙
'console.log(data.query.results)'看看你在結果中得到什麼... – bipen
在哪裏取代碼 – user1896860
嗨bipen我沒有得到結果。 ..請幫助我。我是'var $ content = $(「#content」)'add'console.log(data)''之後的json和jquery – user1896860