指引网

当前位置: 主页 > 网页制作 > JavaScript >

多种天气预报调用代码分享

来源:网络 作者:佚名 点击: 时间:2017-07-02 09:01
[摘要]  今天我们来介绍利用weather.com.cn上的天气预报功能,这里介绍了大家常用的,其它的大家可以自己去下载。

我们这里的天气预览不需要js来调用,只要用iframe就可以了,更不需要asp.net之类的来操作了。

调用代码一

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn1/weather.htm " width="235" height="20" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用代码二

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn2/weather.htm " width="180" height="20" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用代码三

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn3/weather.htm " width="225" height="20" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用代码四

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn4/weather.htm " width="160" height="20" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用代码五

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn5/weather.htm " width="200" height="20" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用英文版的

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn10/weather.htm " width="260" height="100" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用代码七

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn11/weather.htm " width="490" height="50" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

调用代码八

 代码如下 复制代码

<iframe src="http://m.weather.com.cn/m/pn12/weather.htm " width="245" height="110" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>

好了就介绍这些了,如果有想把市名取消只要天气预报怎么处理呢,

我们只要给iframe增加样式就可以了

 代码如下 复制代码
style="margin-left:-48px;_margin-left:-45px; float:left; display:inline;"

代码如下

<iframe src="http://m.weather.com.cn/m/pn4/weather.htm " width="160" height="20" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" style="margin-left:-48px;_margin-left:-45px; float:left; display:inline;"></iframe>

在线预览效果如

javascript/42152.htm">http://www.111cn.net/js_a/javascript/42152.htm

------分隔线----------------------------