0
我想創建一個簡單的網頁,從wunderground.com拉潮的結果。 雖然似乎沒有出現。我插入了load
函數,這樣當頁面加載並在那裏工作(使我的網站風格化)時會顯示某些內容,但除了我的標題外,沒有其他內容顯示出來。使用天氣apis
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript"></script>
<h1>Tide High/Low</h1>
<section id="fetch">
<div id="tweets"></div>
<style>
body {
background: #00CCFF;
}
h1 {
font-size: 100px;
font-weight: bold;
text-align: center;
font-family: sans-serif;
color: white;
}
#search {
font-size: 15px;
left: 200px;
font-weight: bold;
font-family: sans-serif;
color: #00CCFF;
margin-left: 275px;
}
</style>
<script>
$("#tweets").load("http://api.wunderground.com/api/961d546ea36a6968/tide.json",
function(responseTxt,statusTxt,xhr){
if(statusTxt=="success")
alert("External content loaded successfully!");
if(statusTxt=="error")
alert("wuddup: "+xhr.status+": "+xhr.statusText);
});
function getWeather(callback) {
var weather = 'http://api.wunderground.com/api/961d546ea36a6968/tide.json';
$.ajax({
dataType: "jsonp",
url: weather,
success: callback
});
getWeather(function (data) {
console.log('weather data received');
console.log(data.list[0].weather[0].description);
console.log(data.list[0].weather[0].main);
});
</script>
http://jsfiddle.net/775KZ/ 在這裏一切都很好,不是嗎?有什麼問題? –
我需要使用一個API,'加載'功能不顯示我從wunderground.com拉什麼 – user2901185