2011年5月10日 星期二

轉貼 Jquery plugin weather

這個外掛主要參照 yahoo weather API.

使用方式:
1. 下載 / 參照 jQuery API
2. 下載這個API


簡單的 code 大致如下,輸入 地點 (_location) 和設定 單位'c' 表示攝氏溫度

成功的話就會將資訊在 weather 物件裡面,包含溫度、天氣概況,風向、濕度...等等 Yahoo Weather API 所提供的資訊


var getWeather = function(_location) {

$.simpleWeather({
location: _location,
unit: 'c',
success: function(weather) {
// alert(weather.forecast);

},
error: function(error) {
alert(error);
}
});

}







轉貼自 : jQueery Plugin's

沒有留言: