0

div#weather内部,我有一些 PHP 正在调用 Google 的天气 XML。它工作得很好,除了它变得陈旧。我想每 600000 毫秒重新加载一次 div 以获得新的 XML。

我正在使用 javascript 计时器的路径,但这似乎需要一个外部 URL。

如果我需要将 PHP 放在一个外部文件中,这没什么大不了的,只是不理想。

<div id="weather">
<?php
    $URL = "http://www.google.com/ig/api?weather=60618";
    $dataInISO = file_get_contents($URL);
    $dataInUTF = mb_convert_encoding($dataInISO, "UTF-8", "ISO-8859-2");
    $xml = simplexml_load_string($dataInUTF);
    $current = $xml->xpath("/xml_api_reply/weather/current_conditions");
?>
    <div class="weather-<?php $weather =  $current[0]->condition['data']; $weatherclass = str_replace(' ','-',$weather); $weatherclass = strtolower($weatherclass); echo $weatherclass; ?>">&nbsp;</div>
    <div id="temp"><?= $current[0]->temp_f['data'] ?>&deg;</div>
    <div id="condition"><?= $current[0]->condition['data'] ?></div>
</div>
4

1 回答 1

0

如果你想保留你的单个文件,你可以使用 ajax 来调用自己,然后抓住里面的 html<div id="weather">来替换你当前的 div。

$.get('your current page.php', function(data){
   var a = $(data);
   var weather = $(a).find('#weather').html();
   $('#weather').html(weather);
});
于 2012-08-08T02:16:05.490 回答