我需要从数组中提取信息。该数组位于此URL
http://api.wunderground.com/api/5e8af95dbdebbd73/geolookup/conditions/forecast/q/UK/England.json
如果您搜索,您可以看到许多Eng / Uk城镇的所有信息
我试图让用户可以输入他们当前的位置,他们绘制的信息与上面链接的数组相同。
这是到目前为止的代码
<h3> Weather Data </h3>
<form method= "POST" action="about.php">
<input type="text" name="location" value = "location"/>
</form>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>
jQuery(document).ready(function($) {
$.ajax({
url : "http://api.wunderground.com/api/5e8af95dbdebbd73/geolookup/conditions/forecast/q/UK/England.json",
dataType : "jsonp",
success : function(parsed_json) {
var location = parsed_json['location']['city'];
var temp_f = parsed_json['current_observation']['temp_f'];
alert("Current temperature in " + location + " is: " + temp_f);
}
});
});