首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

获取天候

2012-10-27 
获取天气练习~htmlheadmeta http-equivContent-Type contenttext/html charsetutf-8title

获取天气

练习~

<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>weather</title><script type="text/javascript" src="jquery.js"></script><script>$(document).ready(function(){$.ajax({url: "http://m.weather.com.cn/data/101070201.html",cache: true,success: function(js){//document.write(js.weatherinfo.city);var str = "<B>" + js.weatherinfo.city + "<B/><br/>"str +=js.weatherinfo.date_y + " " + js.weatherinfo.week + "<br/>"str += "农历:" + js.weatherinfo.date + "<br/>"str += "气温:" + js.weatherinfo.temp1 + "<br/>"str += "风力:" + js.weatherinfo.wind1 + "<br/>"str += "建议:" + js.weatherinfo.index_d + "<br/>"$("div").html(str)},dataType : "json"});})</script></head><body bgcolor="#004e98" ><div id="results" style="color:white;"></div></body></html>
?

热点排行