当前位置: 代码迷 >> Web前端 >> 如何在网站中插入天气预报,qq,发送邮件
  详细解决方案

如何在网站中插入天气预报,qq,发送邮件

热度:123   发布时间:2012-09-02 21:00:34.0
怎么在网站中插入天气预报,qq,发送邮件

晚上看博客看到一个关于在网站中插入天气预报的,所以在这里收藏一下:

?

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

?

如果需要换成其他城市的天气,则替换“101220101”即可,那么具体不同的城市对应的数字可以通过http://ah.weather.com.cn/?里的点击查询,则地址栏中的URL:http://www.weather.com.cn/weather/101011000.shtml里的数字即是。

?

?

其实写着上面的内容让我想起以前写的页面中涉及的添加qq和点击链接直接发送邮件的。

?

添加QQ:

  <a href="tencent://message/?uin=790419465&Site=www.xnzjpc.com.cn&Menu=yes" id="qqA"
                    title="点击给他发QQ消息">
                    <img src="http://wpa.qq.com/pa?p=1:790419465:4" alt="" />有事您Q我</a>

效果:

?

点击链接发送邮件:

    <a href="mailto:xdwangiflytek@gmail.com" target="_parent" title="给我发邮件吧">Email <span>
                        xdwangiflytek@gmail.com</span> </a>

效果:

?

?