1

我使用 zWeatherFeed 来显示天气,但我找不到任何示例来更改选项。

<style>
    .weatherItem{padding-left:200px;}
    .odd{height:130px;}
    .weatherCity{font-weight:bold;}
    .weatherFeed{height: 130px; width: 100%;}
</style>
<script type="text/javascript">
    $(document).ready(function () {
        $('#test').weatherfeed(['TUXX0015']);
    });
</script>
<div id="test">
</div>

例如,我也想在第二天展示。有没有关于这个天气插件或任何替代天气插件的例子?我更喜欢使用 zWeatherFeed,因为这个插件有很好的可视化。

谢谢。

4

2 回答 2

1

zWeatherFeed 插件目前无法显示第二天的预报(尽管提供了完整预报的链接)。可用的选项有:

  • unit - 指定要返回的单位:'c' - 摄氏度,'f' - 华氏度
  • image - 如果为 true,则在背景中显示天气状况的图像。
  • highlow - 如果为 true,则包括每个项目中的高值和低值。
  • wind - 如果为 true,则在每个项目中包括风向和强度。
  • 链接 - 如果为真,包括指向 Yahoo! 上的完整预测的链接 网站。
  • showerror - 如果为 true,则在提要不可用或位置无效时显示消息。
  • linktarget - 指定预测链接的目标('_blank'、'_self'、'_top'、framename)。
  • woeid - 如果为真,则使用 Yahoo! 位置的 WOEID 标识符

http://www.zazar.net/developers/jquery/zweatherfeed/

于 2012-09-05T11:15:51.187 回答
0

<script type="text/javascript"> $(document).ready(function () { $('#weatherDiv').weatherfeed(['EIXX0048'], { forecast: true }); }); </script>

如果您将选项 forecast:true 添加到该功能的选项中,它将显示未来 5 天的预测。可以在以下位置查看完整示例: http ://www.zazar.net/developers/jquery/zweatherfeed/example_forecast.html

于 2014-08-02T13:03:54.690 回答