如何将 json 值绑定到脚本并需要 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,图标是图像标签
<div id="content">
<img id="weather_icon" />
当我运行应用程序时,它只需要数据。我需要来自 api 的天气图像和数据。请帮忙