json文件:
{
"weather": [
{
"location": "G",
"temp": "9"
},
{
"location": "L",
"temp": "6"
},
{
"location": "W",
"temp": "10"
}
]
}
脚本
<script type="text/javascript">
// <![CDATA[
$(document).ready(function() {
var url = ".../Json.php";
$.getJSON(url + "?callback=?", null, function(weather) {
for(i in weather) {
location = weather[i].location;
temp = weather[i].temp;
$("#footer").append(location.text + temp.text+"<hr />");
}
});
});
// ]]>
</script>
有人可以告诉我我在哪里做错了吗?那是因为我使用的 json url 属于不同的域吗?我尝试使用 jsonp 但它仍然无法正常工作,....
非常感谢。
P/S:我在哪里得到了Jsonp想法示例,我无法配置服务器,这是被禁止的。