【发布时间】:2015-11-08 10:56:13
【问题描述】:
我正在尝试使用 OpenWeatherMap API for javascript 创建一个天气应用程序。我的网络应用程序的代码是:
<!DOCTYPE html>
<html>
<head>
<title>Weather</title>
<script src = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2.min.js"></script>
<script>
function gettingJSON(){
document.write("jquery loaded");
$.getJSON("api.openweathermap.org/data/2.5/weather?q=London&APPID=ee6596241130f193adf1ba90e625cc10",function(json){
document.write(json);
}
</script>
</head>
<body>
<button id = "getIt" onclick = "gettingJSON()">Get JSON</button>
</body>
</html>
我在这里做错了什么?
【问题讨论】:
-
);} 在您的脚本末尾丢失
标签: javascript weather-api openweathermap