当前位置: 编程技术>jquery
Jquery如何获取新浪天气预报?实例代码
来源: 互联网 发布时间:2014-10-08
本文导语: 例子,jquery调用新浪天气预报接口,获取全国各个省市区的天气预报。 代码示例: function GetWeather(a) { var date=new Date(); var cDate=date.getFullYear() "-" (date.getMonth() 2) "-" date.getDate(); $("#wPlace").text(a.value); ...
例子,jquery调用新浪天气预报接口,获取全国各个省市区的天气预报。
代码示例:
function GetWeather(a) {
var date=new Date();
var cDate=date.getFullYear() "-" (date.getMonth() 2) "-" date.getDate();
$("#wPlace").text(a.value);
$.getScript("http://php.weather.sina.com.cn/js.php?" $.param({
city: a.value,
day:cDate,
password: "DJOYnieT8234jlsK"
}), function(json) {//数据返回
$("#weather").text(status1 " " direction1);
$("#wd").text(temperature1 "°~" temperature2 "°");
/*
需要传入city参数,就是要获取天气的城市名,直接写中文名称
status1:天气状况(多云,晴,小雨,雪等等) www.
temperature1:温度
*/
});
}
var date=new Date();
var cDate=date.getFullYear() "-" (date.getMonth() 2) "-" date.getDate();
$("#wPlace").text(a.value);
$.getScript("http://php.weather.sina.com.cn/js.php?" $.param({
city: a.value,
day:cDate,
password: "DJOYnieT8234jlsK"
}), function(json) {//数据返回
$("#weather").text(status1 " " direction1);
$("#wd").text(temperature1 "°~" temperature2 "°");
/*
需要传入city参数,就是要获取天气的城市名,直接写中文名称
status1:天气状况(多云,晴,小雨,雪等等) www.
temperature1:温度
*/
});
}
您可能感兴趣的文章:
- php百度天气小偷实现代码
- PHP百度天气预报小偷程序
- php百度天气接口实例代码
- php 天气预报代码一例
- php调用yahoo sina api天气预报的实现代码
- php调用google天气api的实例代码