我曾问过一个问题,为什么大多数 ajax 解决方案都涉及一些后端语言,如 PHP。
有人告诉我这是因为由于相同的域策略,Web 浏览器不允许完整的 javascript/jquery 解决方案。然而下面的代码绝对运行良好:
<script type="text/javascript">
$(document).ready(function () {
$("#1").click(function () {
$.ajax({
type: "GET",
url: "http://api.wunderground.com/api/ac7e64a2f6e2d440/geolookup/conditions/q/IA/Cedar_Rapids.json",
dataType: "jsonp",
success: function (parsed_json) {
$('div').html("Current temperature in " + parsed_json.current_observation.temp_f);
alert(parsed_json.location.city);
var location = parsed_json['location']['city'];
var temp_f = parsed_json['current_observation']['temp_f'];
alert("Current temperature in " + location + " is: " + temp_f);
}
});
});
});
</script>
那么这段代码不应该运行吗?我不明白。
谢谢,吉姆