天気予報< ;/title> ;
ここにあります: city,
気温は< ;span class="temp">温度、
風向: 風向、
風力: 風力発電< /span>
<スクリプトタイプ="text /javascript">
$(function () {
$.ajax({
//要求されたアドレス
url: "http://127.0.0.1/weather.php",
//関数は、リクエストは成功しました
success: function (data) {
//返されたデータを解析し、文字列を JSON 形式に変換するには eval() を使用します
var oD = eval('('+data+')');
//Use jquery- 1.8.2 要素の取得
var $place = $(".place"),
$temp = $(".temp"),
$wind = $(".wind"),
$windPower = $( ".windPower");
//返されたデータを対応する場所に配置します
$place.html(oD["weatherinfo"]["city"]);
$temp.html(oD["weatherinfo"]["気温"] + "°");
$wind.html(oD["weatherinfo"]["WD"]);
$windPower.html(oD["weatherinfo"]["WS"]);
}
});
})