复制代码 代码如下: header("content-type:text/html;charset=utf-8");$weather = file_get_contents("http://www.weather.com.cn/data/sk/101280601.html");echo $weather;?> 复制代码 代码如下: <br>.all span {font:bold 30px/50px "宋体";color:red;}<br>天气预报这里是:城市,气温是气温,风向:风向,风力:风力<br>$(function () {<br>$.ajax({<br>//请求的地址<br>url : "http://127.0.0.1/weather.php",<br>//请求成功后执行的函数<br>success : function (data) {<br>//用eval()解析返回来的数据,将字符串转成JSON格式<br>var oD = eval('(' data ')');<br>//用jquery-1.8.2获取元素<br>var $place = $(".place"),<br>$temp = $(".temp"),<br>$wind = $(".wind"),<br>$windPower = $(".windPower");<br>//将返回来的数据放到相应的位置<br>$place.html(oD["weatherinfo"]["city"]);<br>$temp.html(oD["weatherinfo"]["temp"] "°");<br>$wind.html(oD["weatherinfo"]["WD"]);<br>$windPower.html(oD["weatherinfo"]["WS"]);<br>}<br>});<br>})<br>