我想创建一个从wunderground.com提取潮汐结果的简单网页。不过似乎什么都没有出现。我插入了该load
函数,以便在页面加载时显示一些内容,然后从那里开始工作(对我的网站进行样式化),但似乎除了我的标题之外什么都没有显示。
<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>