从天气网提取气象预报数据

如果要开发一个天气预报的功能,可以向中国天气网申请接口,不过提交提交之后基本没有下文。

但我们可以用正则表达式直接从天气网直接提取数据,并把它编写成json。

下面以上海的天气预报为例(网址是:  http://www.weather.com.cn/weather/101020100.shtml )

我们先来看怎么获取html,C#代码为:

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.IO;
using System.Net;
using System.Text;
using System.Web.Script.Serialization;
using System.Xml;
using PublicLibrary;
using System.Text.RegularExpressions;


private  static string PostWebRequest()        
    {
        HttpWebRequest webRequest2 = (HttpWebRequest)WebRequest.Create(new Uri("http://www.weather.com.cn/weather/101020100.shtml"));
        HttpWebResponse response2 = (HttpWebResponse)webRequest2.GetResponse();
        StreamReader sr2=new StreamReader(response2.GetResponseStream(), Encoding.UTF8);            
        string text2 = sr2.ReadToEnd();
        
        string patten=@"<div\s*class=\""weatherYubaoBox\"">(.|\s)*?</div>";
        Regex rg=new Regex(patten, RegexOptions.Multiline);
        text2=rg.Match(text2).Value;
        //Lib.WriteLog(text2);
        return text2;
    }  
View Code

得到的全部html为:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>上海天气预报-今日_明日_一周天气预报:24日&nbsp;星期二  多云转阴  29/23℃  </title>
<meta http-equiv="Content-Language" content="zh-cn">
<meta name="keywords" content="上海天气预报,上海今日天气,上海明日天气,上海一周天气预报" />
<meta name="description" content="上海天气预报,及时准确发布中央气象台天气信息,便捷查询上海今日天气,上海明日天气,上海一周天气预报,上海天气预报还提供上海各区县的生活指数、健康指数、交通指数、旅游指数,及时发布上海气象预警信号、各类气象资讯。" />
<link  rel="icon" href="/m2/i/icon/faviconie9.ico?v=3" type="image/x-icon" />
<meta name="msapplication-task" content="name=天气资讯;action-uri=http://www.weather.com.cn/news/index.shtml;icon-uri=http://www.weather.com.cn/favicon.ico" />
<meta name="msapplication-task" content="name=生活天气;action-uri=http://www.weather.com.cn/life/index.shtml;icon-uri=http://www.weather.com.cn/favicon.ico" />
<meta name="msapplication-task" content="name=气象科普;action-uri=http://www.weather.com.cn/science/index.shtml;icon-uri=http://www.weather.com.cn/favicon.ico" />
<meta name="msapplication-task" content="name=灾害预警;action-uri=http://www.weather.com.cn/alarm/index.shtml;icon-uri=http://www.weather.com.cn/favicon.ico" />
<meta name="msapplication-task" content="name=旅游天气;action-uri=http://www.weather.com.cn/trip/index.shtml;icon-uri=http://www.weather.com.cn/favicon.ico" />
<script type="text/javascript" src="/m2/j/public/IE9sitemode2013.js"></script>
<script type="text/javascript" src="/m2/j/public/merge201403.js" ></script>
<script type="text/javascript" src="/m2/j/public/tooltips2014.js?y=2014"></script>
<script type="text/javascript" src="/m2/j/zs201404.js?id=201405"></script>
<script type="text/javascript" src="/m2/j/public/dltotw2013.js"></script>
<script type="text/javascript" src="http://geoip.weather.com.cn/g/"></script>
<link type="text/css" href="/m2/c/index/weatherdetail201403.css?y=201406" rel="stylesheet" />
<!--[if lt IE 9]>
<script>'section aside'.replace(/\w+/g, function (n) { document.createElement(n) })</script>
<![endif]-->
<script type="text/javascript" language="JavaScript" src="http://i.tq121.com.cn/j/core.js"></script>
<script>W.js("http://i.tq121.com.cn/j/ad/caoyu-min.js")</script>
<script type="text/javascript" src="http://ad.321tq.com/ex2?posid=d"></script>
<script type="text/javascript" src="/m2/j/public/gdt_plugs.js"></script>
</head><body>



<div class="topSj">
<div id="newsNav">
    <p><a href="http://www.weather.com.cn/" title="中国天气网"><img src="/m2/i/new_logo_s.jpg" style="border:0;" onfocus="this.blur();" alt="中国天气网"></a></p>
    <ul>
        <li><a href="http://www.weather.com.cn/" title="首页">首页</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/alarm/" title="灾害预警">灾害预警</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/forecast/" title="天气预报">天气预报</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/live/" title="现在天气">现在天气</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/climate/" title="气候变化">气候变化</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/news/" title="天气资讯">天气资讯</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/life/" title="生活天气">生活天气</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/trip/" title="旅游天气">旅游天气</a></li>
                  <li>-</li>
        <li><a href="http://www1.weather.com.cn/jt/index.shtml" title="交通气象">交通气象</a></li>
                   <li>-</li>
        <li><a href="http://3g.weather.com.cn/" title="中国天气通" target="_blank">中国天气通</a></li>
        <li>-</li>
        <li><a href="http://club.weather.com.cn/" title="天气社区" target="_blank">天气社区</a></li>
        <li>-</li>
        <li><a href="http://www.weather.com.cn/wzfw/ryzp/" title="人员招聘">人员招聘</a></li>
    </ul>
</div>

<div class="mainNav">
<!--Header-->

  <dl>
    <dt>
      
    </dt>
    <dd>
      <a href="http://sh.weather.com.cn/"><img src="/m2/i/headpic/shanghai.jpg" alt="" /></a>
    </dd>
  </dl>
  <div class="navbox">
    <ul>
      <li id="655"><a href="http://www.weather.com.cn">首页</a></li><li id="3217"><a href="http://sh.weather.com.cn/">上海首页</a></li><li id="0"><a href="http://www.weather.com.cn/shanghai/index.shtml">天气预报</a></li><li id="3224"><a href="http://sh.weather.com.cn/qxkp/index.shtml">气象科普</a></li><li id="3222"><a href="http://sh.weather.com.cn/gywm/index.shtml">关于我们</a></li>
    </ul>
    <span>
    <a href="http://www.weather.com.cn/weather/101020100.shtml">城区</a>|<a href="http://www.weather.com.cn/weather/101020200.shtml">闵行</a>|<a href="http://www.weather.com.cn/weather/101020300.shtml">宝山</a>|<a href="http://www.weather.com.cn/weather/101020500.shtml">嘉定</a>|<a href="http://www.weather.com.cn/weather/101020600.shtml">浦东南汇</a>|<a href="http://www.weather.com.cn/weather/101020700.shtml">金山</a>|<a href="http://www.weather.com.cn/weather/101020800.shtml">青浦</a>|<a href="http://www.weather.com.cn/weather/101020900.shtml">松江</a>|<a href="http://www.weather.com.cn/weather/101021000.shtml">奉贤</a>|<a href="http://www.weather.com.cn/weather/101021100.shtml">崇明</a>|<a href="http://www.weather.com.cn/weather/101021200.shtml">徐家汇</a>|<a href="http://www.weather.com.cn/weather/101021300.shtml">浦东</a>
    <b><a href="http://sh.weather.com.cn/gywm/04/394460.shtml">上海市气象局</a></b>
    </span> </div>

  
  


<div class="post_st">
<div id="adposter_6125" class="adposter_6125">
<div class="adposter_6125" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div>
<div id="adposter_6126" class="adposter_6126">
<div class="adposter_6126" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div>
</div>
</div>
</div>

<input id="colorid" type="hidden" value="0">


<div class="locationSearch">
 
  <span class="location"> 
    <a href="http://www.weather.com.cn/" class="master"><strong>中国天气网</strong></a>&gt;&nbsp;<a href="http://www.weather.com.cn/shanghai/index.shtml" class="master"><strong>上海</strong></a>&gt;<b>城区天气预报</b>
  </span>
 



<div class="formBox">
<div id="Zip" class="Mainbox" >
<div id="ZipContent">
  <input type="text" class="textinput" id="txtZip" value="输入景点名、城市名、全拼、简拼查询"/>
  <input type="button" class="btn"
                id="btnZip" value="" />
</div>
<div id="Zipresult" class="inforesult"> </div>
<div id="show">
  <ul>
  </ul>
</div>
<div class="suggest-additions" style="width: 406px; border:none;">
  <div class="sugg_tan">
    <ul>
      <li class="move">热门景点</li>
      <li>热门城市</li>
      <li>国外城市</li>
      <li>省级站</li>
      <li style="border-right:none">资讯</li>
    </ul>
    <div class="sugg_show" style="display:block"> <a href="http://www.weather.com.cn/weather/10127190601A.shtml">九寨沟风景区</a> <a href="http://www.weather.com.cn/weather/10101020009A.shtml">香山</a> <a href="http://www.weather.com.cn/weather/10101010004A.shtml">天坛公园</a> <a href="http://www.weather.com.cn/weather/10123020112A.shtml">鼓浪屿</a> <a href="http://www.weather.com.cn/weather/10114010104A.shtml">布达拉宫</a> <a href="http://www.weather.com.cn/weather/10130051008A.shtml">阳朔漓江景区</a> <a href="http://www.weather.com.cn/weather/10101010018A.shtml">故宫博物院</a> <a href="http://www.weather.com.cn/weather/10110020101A.shtml">云冈石窟</a> <a href="http://www.weather.com.cn/weather/10111010118A.shtml">华清池</a> <a href="http://www.weather.com.cn/weather/10111010116A.shtml">大唐芙蓉园</a> <a href="http://www.weather.com.cn/weather/10118090107A.shtml">龙门石窟景区</a> <a href="http://www.weather.com.cn/weather/10126030601A.shtml">黄果树瀑布</a> <a href="http://www.weather.com.cn/weather/10122100115A.shtml">黄山</a> <a href="http://www.weather.com.cn/weather/10118080107A.shtml">清明上河园</a> <a href="http://www.weather.com.cn/weather/10101100001A.shtml">八大处公园</a> <a href="http://www.weather.com.cn/weather/10109040802A.shtml">京北第一草原</a> <a href="http://www.weather.com.cn/weather/10114020501A.shtml">珠穆朗玛峰</a> <a href="http://www.weather.com.cn/weather/10121010109A.shtml">西湖</a> <a href="http://www.weather.com.cn/weather/10119040134A.shtml">拙政园</a> <a href="http://www.weather.com.cn/weather/10130050116A.shtml">象山公园</a> <a href="http://www.weather.com.cn/weather/10109040206A.shtml">承德避暑山庄</a> <a href="http://www.weather.com.cn/weather/10111051101A.shtml">华山</a> <a href="http://www.weather.com.cn/weather/10109022201A.shtml">野三坡</a> <a href="http://www.weather.com.cn/weather/10101010006A.shtml">北京国子监</a> <a href="http://www.weather.com.cn/weather/10127190501A.shtml">黄龙风景区</a> <a href="http://www.weather.com.cn/weather/10128090101A.shtml">七星岩风景区</a> <a href="http://www.weather.com.cn/weather/10101080009A.shtml">八达岭长城</a> <a href="http://www.weather.com.cn/weather/10106030301A.shtml">长白山</a> <a href="http://www.weather.com.cn/weather/10101020015A.shtml">颐和园</a> <a href="http://www.weather.com.cn/weather/10111010117A.shtml">大雁塔</a> </div>
    <div  class="sugg_show citysugs"> <a href="http://www.weather.com.cn/weather/101020100.shtml">上海</a> <a href="http://www.weather.com.cn/weather/101010100.shtml">北京</a> <a href="http://www.weather.com.cn/weather/101210101.shtml">杭州</a> <a href="http://www.weather.com.cn/weather/101280101.shtml">广州</a> <a href="http://www.weather.com.cn/weather/101200101.shtml">武汉</a> <a href="http://www.weather.com.cn/weather/101190101.shtml">南京</a> <a href="http://www.weather.com.cn/weather/101280601.shtml">深圳</a> <a href="http://www.weather.com.cn/weather/101190401.shtml">苏州</a> <a href="http://www.weather.com.cn/weather/101230201.shtml">厦门</a> <a href="http://www.weather.com.cn/weather/101220101.shtml">合肥</a> <a href="http://www.weather.com.cn/weather/101250101.shtml">长沙</a> <a href="http://www.weather.com.cn/weather/101270101.shtml">成都</a> <a href="http://www.weather.com.cn/weather/101210401.shtml">宁波</a> <a href="http://www.weather.com.cn/weather/101240101.shtml">南昌</a> <a href="http://www.weather.com.cn/weather/101040100.shtml">重庆</a> <a href="http://www.weather.com.cn/weather/101180101.shtml">郑州</a> <a href="http://www.weather.com.cn/weather/101190201.shtml">无锡</a> <a href="http://www.weather.com.cn/weather/101110101.shtml">西安</a> <a href="http://www.weather.com.cn/weather/101120101.shtml">济南</a> <a href="http://www.weather.com.cn/weather/101191101.shtml">常州</a> <a href="http://www.weather.com.cn/weather/101230101.shtml">福州</a> <a href="http://www.weather.com.cn/weather/101030100.shtml">天津</a> <a href="http://www.weather.com.cn/weather/101120201.shtml">青岛</a> <a href="http://www.weather.com.cn/weather/101281601.shtml">东莞</a> <a href="http://www.weather.com.cn/weather/101070101.shtml">沈阳</a> <a href="http://www.weather.com.cn/weather/101210701.shtml">温州</a> <a href="http://www.weather.com.cn/weather/101190501.shtml">南通</a> <a href="http://www.weather.com.cn/weather/101070201.shtml">大连</a> <a href="http://www.weather.com.cn/weather/101320101.shtml">香港</a> <a href="http://www.weather.com.cn/weather/101190404.shtml">昆山</a> </div>
    <div class="sugg_show citysugs"> <a href="http://www.weather.com.cn/weather/102010100.shtml">首尔</a> <a href="http://www.weather.com.cn/weather/104010100.shtml">新加坡</a> <a href="http://www.weather.com.cn/weather/106010100.shtml">曼谷</a> <a href="http://www.weather.com.cn/weather/401110101.shtml">纽约</a> <a href="http://www.weather.com.cn/weather/124020100.shtml">迪拜</a> <a href="http://www.weather.com.cn/weather/103163100.shtml">大阪</a> <a href="http://www.weather.com.cn/weather/601020101.shtml">悉尼</a> <a href="http://www.weather.com.cn/weather/601060101.shtml">墨尔本</a> <a href="http://www.weather.com.cn/weather/401040101.shtml">洛杉矶</a> <a href="http://www.weather.com.cn/weather/105010100.shtml">吉隆坡</a> <a href="http://www.weather.com.cn/weather/201010100.shtml">伦敦</a> <a href="http://www.weather.com.cn/weather/401070101.shtml">芝加哥</a> <a href="http://www.weather.com.cn/weather/203020100.shtml">法兰克福</a> <a href="http://www.weather.com.cn/weather/401620100.shtml">华盛顿</a> <a href="http://www.weather.com.cn/weather/208010100.shtml">莫斯科</a> <a href="http://www.weather.com.cn/weather/103010100.shtml">东京</a> <a href="http://www.weather.com.cn/weather/203038900.shtml">慕尼黑</a> <a href="http://www.weather.com.cn/weather/401060100.shtml">波士顿</a> <a href="http://www.weather.com.cn/weather/401370100.shtml">拉斯维加斯</a> <a href="http://www.weather.com.cn/weather/202010100.shtml">巴黎</a> <a href="http://www.weather.com.cn/weather/404430100.shtml">温哥华</a> <a href="http://www.weather.com.cn/weather/103090100.shtml">京都</a> </div>
    <div class="sugg_show citysug"> <span><a href="http://bj.weather.com.cn" style="font-weight:bold;">北京</a></span> <span><a href="http://tj.weather.com.cn" style="font-weight:bold;">天津</a></span> <span><a href="http://sh.weather.com.cn" style="font-weight:bold;">上海</a></span> <span><a href="http://hebei.weather.com.cn" style="font-weight:bold;">河北</a></span> <span><a href="http://henan.weather.com.cn" style="font-weight:bold;">河南</a></span> <span><a href="http://ah.weather.com.cn" style="font-weight:bold;">安徽</a></span> <span><a href="http://zj.weather.com.cn" style="font-weight:bold;">浙江</a></span> <span><a href="http://cq.weather.com.cn" style="font-weight:bold;">重庆</a></span> <span><a href="http://fj.weather.com.cn" style="font-weight:bold;">福建</a></span> <span><a href="http://gs.weather.com.cn" style="font-weight:bold;">甘肃</a></span> <span><a href="http://gd.weather.com.cn" style="font-weight:bold;">广东</a></span> <span><a href="http://gx.weather.com.cn" style="font-weight:bold;">广西</a></span> <span><a href="http://gz.weather.com.cn" style="font-weight:bold;">贵州</a></span> <span><a href="http://yn.weather.com.cn" style="font-weight:bold;">云南</a></span> <span><a href="http://nmg.weather.com.cn" style="font-weight:bold;">内蒙古</a></span> <span><a href="http://jx.weather.com.cn" style="font-weight:bold;">江西</a></span> <span><a href="http://hubei.weather.com.cn" style="font-weight:bold;">湖北</a></span> <span><a href="http://sc.weather.com.cn" style="font-weight:bold;">四川</a></span> <span><a href="http://nx.weather.com.cn" style="font-weight:bold;">宁夏</a></span> <span><a href="http://qh.weather.com.cn" style="font-weight:bold;">青海</a></span> <span><a href="http://sd.weather.com.cn" style="font-weight:bold;">山东</a></span> <span><a href="http://shaanxi.weather.com.cn" style="font-weight:bold;">陕西</a></span> <span><a href="http://shanxi.weather.com.cn" style="font-weight:bold;">山西</a></span> <span><a href="http://xj.weather.com.cn" style="font-weight:bold;">新疆</a></span> <span><a href="http://xz.weather.com.cn" style="font-weight:bold;">西藏</a></span> <span><a href="http://www.weather.com.cn/html/province/xianggang.shtml">香港</a></span> <span><a href="http://www.weather.com.cn/html/province/taiwan.shtml">台湾</a></span> <span><a href="http://mo.weather.com.cn" style="font-weight:bold;">澳门</a></span> <span><a href="http://hainan.weather.com.cn" style="font-weight:bold;">海南</a></span> <span><a href="http://hunan.weather.com.cn" style="font-weight:bold;">湖南</a></span> <span><a href="http://js.weather.com.cn" style="font-weight:bold;">江苏</a></span> <span><a href="http://hlj.weather.com.cn" style="font-weight:bold;">黑龙江</a></span> <span><a href="http://jl.weather.com.cn" style="font-weight:bold;">吉林</a></span> <span><a href="http://ln.weather.com.cn" style="font-weight:bold;">辽宁</a></span> <span><a href="http://www.weather.com.cn/textFC/hd.shtml">更多</a></span> </div>
    <div class="sugg_show zxbg" style="padding:20px 0px;">

<p style="background:url(/m2/i/topTen.jpg) no-repeat 0 5px;"><a target="_blank" href="http://www.weather.com.cn/photo/2014/06/gqt/2141235.shtml#index">济南遭暴雨袭击全城"看海"</a></p><p style="background:url(/m2/i/topTen.jpg) no-repeat 0 -20px;"><a target="_blank" href="http://www.weather.com.cn/photo/2014/06/gqt/2142532.shtml#index">一路向北 守望最长白昼</a></p><p style="background:url(/m2/i/topTen.jpg) no-repeat 0 -45px;"><a target="_blank" href="http://www.weather.com.cn/photo/2014/06/gqt/2139256.shtml#index">夏至西瓜季 千姿百态吃瓜相</a></p><p style="background:url(/m2/i/topTen.jpg) no-repeat 0 -68px;"><a target="_blank" href="http://www.weather.com.cn/photo/2014/05/gqt/2118256.shtml#index">外国人眼中的中国美景</a></p><p style="background:url(/m2/i/topTen.jpg) no-repeat 0 -92px;"><a target="_blank" href="http://www.weather.com.cn/photo/2014/06/gqt/2142883.shtml#index">2014国家地理旅行者摄影大赛精选作品</a></p>
</div>
        

  </div>
</div>
</div>

</div>

<ul class="aTextLink"><li class="redian_city">热点城市:</li>
    <li><a href="http://www.weather.com.cn/weather/101010100.shtml" title="北京" target="_blank">北京</a></li>
    <li><a href="http://www.weather.com.cn/weather/101020100.shtml" title="上海" target="_blank">上海</a></li>
</ul>


</div>



<div class="weatherMain">
  <div class="weatherLeft">
    <div class="weatherTop">
      <h1 class="weatheH1"  id="live">
        2014年6月24日 星期二 农历五月廿七
  
<!--today5-->

        <select class="weatherSelect" onchange="MM_jumpMenu('parent',this,0)">
          <option>相关地区</option>
          <option value="http://www.weather.com.cn/weather/101020100.shtml">上海</option><option value="http://www.weather.com.cn/weather/101020300.shtml">宝山</option><option value="http://www.weather.com.cn/weather/101020500.shtml">嘉定</option><option value="http://www.weather.com.cn/weather/101021100.shtml">崇明</option><option value="http://www.weather.com.cn/weather/101021000.shtml">奉贤</option><option value="http://www.weather.com.cn/weather/101020600.shtml">浦东南汇</option><option value="http://www.weather.com.cn/weather/101021300.shtml">浦东</option><option value="http://www.weather.com.cn/weather/101020700.shtml">金山</option><option value="http://www.weather.com.cn/weather/101020800.shtml">青浦</option><option value="http://www.weather.com.cn/weather/101020900.shtml">松江</option><option value="http://www.weather.com.cn/weather/101020200.shtml">闵行</option><option value="http://www.weather.com.cn/weather/101021200.shtml">徐家汇</option>
        </select>
      </h1>
      <div class="weatherTopleft" >
        <h1>上海<span>(Shanghai)</span></h1>
        <dl>
          <dt>
          <div style="width:180px;height:146px;overflow:hidden;margin-bottom:5px;margin-top:5px;">
            <div class="groupposter_4_101020100"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"PIC","files":[{"file":"http:\/\/poster.weather.com.cn\/p_files\/base\/101020100.jpg","link":"http:\/\/poster1.weather.com.cn\/r.php?url=http%3A%2F%2Fwww%2Eweather%2Ecom%2Ecn%2Fcityintro%2F101020100%2Eshtml&p=5046&pos=4&ch=101020100&ck=101025150","IsFlash":"img"}],"code":"","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"180","height":"146","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=5046&pos=4&ch=101020100&act=&order=&contract=&host=&ck=101025150","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

            </div>
          </dt>
          <dd class="fenxiang">
         <span>
 <div class="shareto_toolbox" style="margin-top:2px;margin-left:10px;">
<span class="shareto_button_compact st_button stico stico_shareto">天气分享:</span>
<a href="javascript:void(0);" class="shareto_button_tsina" title="分享到新浪微博"><span class="stico st_button stico_tsina"></span></a>
<a href="javascript:void(0);" class="shareto_button_tsohu" title="分享到搜狐微博"><span class="stico st_button stico_tsohu"></span></a>
<a href="javascript:void(0);" class="shareto_button_t163" title="分享到网易微博"><span class="stico st_button stico_t163"></span></a>
<a href="javascript:void(0)" onclick="postToWb();" title="分享到腾讯微博"><span class="stico_qq"></span></a>
</div>
<script type="text/javascript" src="http://www.weather.com.cn//m2/j/topic/shtqbbx.js" charset="utf-8"></script>     </span>
          </dd>
        </dl>
      </div>
      <script language="javaScript" type="text/javascript" src="/m2/j/sk.js" /> </script>
       
      <div class="weatherTopright">
        <h1>相关数据</h1>
        <dl>
          <dt><a>今日日出日落时间</a></dt>
          <dd>
            <a href="http://baike.weather.com.cn/index.php?doc-view-1263.php" style="text-decoration: none;" target="_blank"><strong style="font-size:16px;color:#000;font-weight:bold;">04:51</strong></a>
            |
            <a href="http://baike.weather.com.cn/index.php?doc-view-1264.php" style="text-decoration: none;" target="_blank"><strong style="font-size:16px;color:#000;font-weight:bold;">19:01</strong></a>
          </dd>
        </dl>
        <dl>

          <dt><a>明日日出日落时间</a></dt>
          <dd>
            <a href="http://baike.weather.com.cn/index.php?doc-view-1263.php" style="text-decoration: none;"  target="_blank"><strong style="font-size:16px;color:#000;font-weight:bold;">04:51</strong></a>
            |
            <a href="http://baike.weather.com.cn/index.php?doc-view-1264.php" style="text-decoration: none;" target="_blank"><strong style="font-size:16px;color:#000;font-weight:bold;">19:02</strong></a>
          </dd>
        </dl>
         <dl style="background:#6789C2;">
          <a style="font-size:14px; color:#fff;font-weight:bold; line-height:50px;" target="_blank"  href="http://scxx.xn121.com/searchprice/shanghai/shanghai/shanghai/index.html"> 农产品价格查询</a>
        </dl>
        
      </div>
       

      
      <div class="cleardiv"></div>
      
      
       

<div class="jxyb" id="weather6h">
  <h1 class="weatheH1">逐6小时天气预报 (2014-06-24&nbsp;08:00发布)

<span><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142883.shtml" title="2014国家地理旅行者摄影大赛精选" target="_blank">2014国家地理旅行者摄影大赛精选</a></span>




    </h1>
   <div class="update">
  <table border="0" cellpadding="0" cellspacing="0">
    <tr>
      <th>24日08:00-14:00</th>
    </tr>
    <tr>
      <td><a target="_blank" href="http://www.weather.com.cn/static/html/legend.shtml"> <img src="http://www.weather.com.cn/m2/i/icon_weather/50x36/d01.gif"> </a></td>
    </tr>
    <tr>
      <td><a class="heis" href="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">
        多云
        </a></td>
    </tr>
    <tr>
      <td class="bigblod"><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
        29
        ℃</a><span><a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
        23
        ℃</a></span></td>
    </tr>
    <tr>
      <td><b><a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
        东南风
        3-4级
        </a></b></td>
    </tr>

        

  </table>
  </div>
  <div class="update">
  <table border="0" cellpadding="0" cellspacing="0">
    <tr>
      <th>24日14:00-20:00</th>
    </tr>
    <tr>
      <td><a target="_blank" href="http://www.weather.com.cn/static/html/legend.shtml"> <img src="http://www.weather.com.cn/m2/i/icon_weather/50x36/d01.gif"> </a></td>
    </tr>
    <tr>
      <td><a class="heis" href="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">
        多云
        </a></td>
    </tr>
    <tr>
      <td class="bigblod"><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
        29
        ℃</a><span><a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
        25
        ℃</a></span></td>
    </tr>
    <tr>
      <td><b><a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
        东南风
        3-4级
        </a></b></td>
    </tr>
     
  </table>
  </div>
  <div class="update">
  <table border="0" cellpadding="0" cellspacing="0">
    <tr>
      <th>24日20:00-25日02:00</th>
    </tr>
    <tr>
      <td><a target="_blank" href="http://www.weather.com.cn/static/html/legend.shtml"> <img src="http://www.weather.com.cn/m2/i/icon_weather/50x36/n01.gif"> </a></td>
    </tr>
    <tr>
      <td><a class="heis" href="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">
        多云
        </a></td>
    </tr>
    <tr>
      <td class="bigblod"><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
        25
        ℃</a><span><a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
        23
        ℃</a></span></td>
    </tr>
    <tr>
      <td><b><a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
        东南风
        3-4级
        </a></b></td>
    </tr>
    
  </table>
  </div>
  <div class="update">
  <table border="0" cellpadding="0" cellspacing="0">
    <tr>
      <th>25日02:00-08:00</th>
    </tr>
    <tr>
      <td><a target="_blank" href="http://www.weather.com.cn/static/html/legend.shtml"> <img src="http://www.weather.com.cn/m2/i/icon_weather/50x36/n02.gif"> </a></td>
    </tr>
    <tr>
      <td><a class="heis" href="http://baike.weather.com.cn/index.php?doc-view-770.php" target="_blank"></a></td>
    </tr>
    <tr>
      <td class="bigblod"><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
        24
        ℃</a><span><a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
        23
        ℃</a></span></td>
    </tr>
    <tr>
      <td><b><a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
        东南风
        3-4级
        </a></b></td>
    </tr>
        

  </table>
  </div>
</div>


<!--Generated By TurboCMS.Java V6.0 Build6002,Tue Jun 24 08:15:02 CST 2014,http://www.TurboCMS.com-->
      
      
      
      <div class="weatherYubao"  id="7d">
        <h1 class="weatheH1">
          七天天气预报
      
          <span>
          
            <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">天气图例</a>
          </span>
        </h1>
        <div class="weatherYubaoBox">
          <table class="tableTop" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <th width="27%">日期</th>
            <th width="28%">天气现象</th>
            <th width="15%">气温</th>
            <th width="15%">风向</th>
            <th width="15%">风力</th>
          </tr>
          </table>
          <!--day 1-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历五月廿七">24日&nbsp;星期二</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d01.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">多云</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>29℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n02.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-770.php" target="_blank"></a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 2-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历五月廿八">25日&nbsp;星期三</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d07.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-612.php" target="_blank">小雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>25℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n08.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-933.php" target="_blank">中雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 3-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历五月廿九">26日&nbsp;星期四</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d09.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-934.php" target="_blank">大雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>25℃</strong></b>
              </a>

            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n09.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-934.php" target="_blank">大雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          
                    <!--day 4-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历六月初一">27日&nbsp;星期五</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d08.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-933.php" target="_blank">中雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>26℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n07.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-612.php" target="_blank">小雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 5-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a class="cyclePrediction" title="农历六月初二">28日&nbsp;星期六</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d08.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-933.php" target="_blank">中雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>27℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n03.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-1370.php" target="_blank">阵雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 6-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a class="cyclePrediction" title="农历六月初三">29日&nbsp;星期日</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d01.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">多云</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>28℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n03.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-1370.php" target="_blank">阵雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>22℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 7-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
            <td width="15%" class="t0" style="background:#f4f7fc;"><a title="农历六月初四">30日&nbsp;星期一</a></td>
            <!-- START WRating v1.0 -->
<script type="text/javascript" src="http://c.wrating.com/a1.js">
</script>
<script type="text/javascript">
var vjAcc="860010-2151030100";
var wrUrl="http://c.wrating.com/";
vjTrack("");
</script>
<noscript><img src="http://c.wrating.com/a.gif?a=&c=860010-2151030100" width="1" height="1"/></noscript>
<!-- END WRating v1.0 -->
            
            
            
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d03.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-1370.php" target="_blank">阵雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>27℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td width="15%">
            <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
    </tr>
          </table>
        </div>
      </div>
      
     
</div>
      
      
<script type="text/javascript" src="http://m.weather.com.cn/a1.js">
</script>
<script type="text/javascript">
var vjAcc="860010-2099040100";
var wrUrl=" http://c.wrating.com/";
var splitUrl = document.location.toString().split("?");
if(splitUrl.length == 2)
{
if(splitUrl[1].indexOf('from') > -1)
{
var search_key = document.location.search.toString().replace("?from=",'');
if(search_key != 'baidu' && search_key != 'coop' && search_key != 'hao123')
{
search_key = 'weather';
}
vjSetReferrer("http://flash."+search_key+".com.cn/come/from/flash.html");
}
}
vjTrack("");
</script>
<noscript><img src="http://c.wrating.com/a.gif?a=&c=860010-2099040100" width="1" height="1"/></noscript>

<script type="text/javascript" src="http://click.wrating.com/c3.js">;
</script> 
<script type="text/javascript">
var vjClickAcc="860010-2099040100";
var wrUrl="http://click.wrating.com/";
vjPattern[0] = "http://www.weather.com.cn/html/weather/101190101.shtml";
initMouseClick();
</script> 
      
<div class="adposter_6122" id="adposter_6122"> 
<div class="adposter_6122" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 

</div>


<div class="weatherRight">


       


  
  <script type="text/javascript">
  var urlSTATIONNAME="上海";
  var urlCITY="上海";
  var urlPROVINCE="上海";
  </script> 
  
  <script type="text/javascript" src="/m2/j/alamr_new/stationalarm_120907.js?areaid=101020100"></script>
  



   <!--精彩图集-->
<div class="jctjs">
<h1><span><a href="http://www.weather.com.cn/photo/gqt/index.shtml" target="_blank">更多</a></span>精彩图集</h1>
<div class="focus">

<ul class="rslides f426x240"><li style="display:block;"><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142532.shtml" target="_blank" title="【特别策划】一路向北 守望中国最长白昼"><img src="http://i.weather.com.cn/images/cn/news/2014/06/22/EF30459C63FE736E91A44F52FFA628AC.jpg" /></a><span>【特别策划】一路向北 守望中国最长白昼</span></li><li><a href="http://www.weather.com.cn/zt/tqzt/142210.shtml" target="_blank" title="数据帝扒天气:梅雨来了 最爱发霉的城市是哪个?"><img src="http://i.weather.com.cn/images/cn/public/2014/06/23/38DDC1CA9F6992C8AD4460F01EC01562.jpg" /></a><span>数据帝扒天气:梅雨来了 最爱发霉的城市是哪个?</span></li><li><a href="http://www.weather.com.cn/photo/2014/06/gqt/2143389.shtml" target="_blank" title="浒苔再次登陆胶东半岛 青岛海滩如草原"><img src="http://i.weather.com.cn/images/cn/public/2014/06/24/2ADEC9A751AF3F186AD66524B58CC511.jpg" /></a><span>浒苔再次登陆胶东半岛 青岛海滩如草原</span></li><li><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142611.shtml" target="_blank" title="江西遭遇强降雨 鄱阳湖水体面积超3千平方公里"><img src="http://pic.weather.com.cn/images/cn/photo/2014/06/22/92202BD0C68D9B849AD5D8B0AE716169.jpg" /></a><span>江西遭遇强降雨 鄱阳湖水体面积超3千平方公里</span></li><li><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142883.shtml" target="_blank" title="神奇大自然 企鹅冲浪健步如飞"><img src="http://i.weather.com.cn/images/cn/public/2014/06/23/88BF8EB98C62CBB5026A49CAF9798231.jpg" /></a><span>神奇大自然 企鹅冲浪健步如飞</span></li></ul><p><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142929.shtml" target="_blank" style="color:">美国摄影师拍摄北美星空全景图 震撼人心</a></p><p><a href="http://www.weather.com.cn/photo/2014/06/gqt/2143380.shtml" target="_blank" style="color:">江西遂川遭特大暴雨袭击 民房倒塌公路被毁</a></p><p><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142471.shtml" target="_blank" style="color:">印尼老虎戏水消暑 模样逗趣</a></p><p><a href="http://www.weather.com.cn/photo/2014/06/gqt/2141235.shtml" target="_blank" style="color:">济南遭暴雨袭击全城“看海”</a></p>


    
    
</div>
</div>

        
<script src="/m2/j/weather/fcmodules.js" type="text/javascript"></script>
<img src="http://poster.weather.com.cn/c.gif" width="1" height="1" style="display:none"/>
<div class="adposter_6116" id="adposter_6116"> 
</div> 



<!--热点排行-->
<div class="dWeatherRanking">
  <h2 class="dWeatherRankingH1">热点排行</h2>
  <ul class="dWeatherRankingBox">


<li style="height:24px;width:265px;overflow:hidden;"><a href="http://www.weather.com.cn/photo/2014/06/gqt/2141235.shtml" target="_blank">济南遭暴雨袭击全城"看海"</a></li><li style="height:24px;width:265px;overflow:hidden;"><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142532.shtml" target="_blank">一路向北 守望最长白昼</a></li><li style="height:24px;width:265px;overflow:hidden;"><a href="http://www.weather.com.cn/photo/2014/06/gqt/2139256.shtml" target="_blank">夏至西瓜季 千姿百态吃瓜相</a></li><li style="height:24px;width:265px;overflow:hidden;"><a href="http://www.weather.com.cn/photo/2014/05/gqt/2118256.shtml" target="_blank">外国人眼中的中国美景</a></li><li style="height:24px;width:265px;overflow:hidden;"><a href="http://www.weather.com.cn/photo/2014/06/gqt/2142883.shtml" target="_blank">2014国家地理旅行者摄影大赛精选作品</a></li>
    </ul>
</div>




<div class="adposter_6117" id="adposter_6117"> 
<div class="adposter_6117" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 

      
<!--生活旅游和气候科普-->      
 <div class="lifeTravel" style="height:140px;overflow:hidden;"> 
  <ul class="lifeTravelNav" id="lifeTravelNav">
      <li class="move"><a>生活旅游</a></li>
      <li><a>气候科普</a></li>
    </ul> 
<div> 
<dl>
<dt>
<span><a href="http://www.weather.com.cn/life/index.shtml" title="夏至养生那些事" target="_blank"><img src="http://i.weather.com.cn/images/cn/life/2014/06/20/E6DA2E7A8E4A4D6ACD358823C9D827E1.jpg" alt="夏至养生那些事" style="width:88px;height:68px;" alter="夏至养生那些事"/></a><a href="http://www.weather.com.cn/life/index.shtml" title="夏至养生那些事" target="_blank"  style="color:" >夏至养生那些事</a></span></dt><dd><ul class="listNews"><li><a href="http://www.tourweather.com.cn/index/lytqkx/2014/06/2143722.shtml" target="_blank" style="color:" >水上漂出游必看 京郊漂流</a></li><li><a href="http://www.weather.com.cn/life/2014/06/gdt/2141680.shtml" target="_blank" style="color:" >夏天要远离的致癌食物</a></li><li><a href="http://www.tourweather.com.cn/index/lytqkx/2014/06/2143729.shtml" target="_blank" style="color:" >小心晒出皮肤癌!海边巧防晒</a></li><li><a href="http://www.weather.com.cn/life/2014/06/gdt/2141684.shtml" target="_blank" style="color:" >夏季警惕患6种“水果病”</a></li></ul></dd>
      </dl>
    </div>

<div style="display:none;">        
<dl class="dquwen"><dt style="height:85px;width:120px;"><a href="http://www.weather.com.cn/climate/2014/06/qhbhyw/2143197.shtml" title="有些树木也会污染环境" target="_blank"><img src="http://i.weather.com.cn/images/cn/public/2014/06/24/E1084378023B0E1FD8D2FC19CF33CB8B.jpg" alt="有些树木也会污染环境"  style="height:80px;width:120px;"  alter="有些树木也会污染环境"/></a></dt><dd><a href="http://www.weather.com.cn/climate/2014/06/qhbhyw/2143197.shtml" title="有些树木也会污染环境" target="_blank"style="color:">有些树木也会污染环境</a></dd></dl><dl class="dquwen"><dt style="height:85px;width:120px;"><a href="http://www.weather.com.cn/climate/2014/06/qhbhyw/2141479.shtml" title="丝路如何可持续发展?" target="_blank"><img src="http://i.weather.com.cn/images/cn/public/2014/06/24/4C344C193EE049E23F78BD91EF3C8FC5.jpg" alt="丝路如何可持续发展?"  style="height:80px;width:120px;"  alter="丝路如何可持续发展?"/></a></dt><dd><a href="http://www.weather.com.cn/climate/2014/06/qhbhyw/2141479.shtml" title="丝路如何可持续发展?" target="_blank"style="color:">丝路如何可持续发展?</a></dd></dl>
</div>

 </div>
     
<div class="adposter_6118" id="adposter_6118"> 
<div class="adposter_6118" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 


<!--专家在线-->
<div class="life">
  <h1 class="mainBoxh1">专家在线 <span class="moredd"><a href="http://www.weather.com.cn/index/zjzx/index.shtml" title="更多" target="_blank">更多</a></span></h1>
<dl><dt><a href="http://www.weather.com.cn/news/2014/06/2142367.shtml" title="北京22日有雷雨" target="_blank"><img src="http://i.weather.com.cn/images/cn/index/2014/06/22/F0F51CD886FDEF8A340490D13411213F.jpg" alt="北京22日有雷雨" style="height:68px;width:88px;"></a></dt><dd><h2><a href="http://www.weather.com.cn/news/2014/06/2142367.shtml" title="北京22日有雷雨" target="_blank">北京22日有雷雨</a></h2>北京市专业气象台专家郭建兴解读22日北京雷阵雨:平均降雨量超过10毫米可能性比较小,但局地存在出现较大降雨的可能性。</dd></dl><ul class="listNews"><li><a href="http://www.weather.com.cn/index/2014/06/zjzx/2141589.shtml"target="_blank" >南方迎入汛以来最强降雨</a></li><li><a href="http://www.weather.com.cn/news/2014/06/2138129.shtml"target="_blank" >海贝思成今年首个登陆台风</a></li><li><a href="http://www.weather.com.cn/news/2014/06/2141926.shtml"target="_blank" >21日18时前后北京城区现雷雨</a></li>
</ul> 
</div>
    
    
<div class="adposter_6119" id="adposter_6119"> 
<div class="adposter_6119" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 

<div class="hotSpots">
           <h1 class="mainBoxh1">热门景点</h1>
        <ul id="hosSpotsNav" class="hotSpotsNav">
            <li class="move"><a>海滨</a></li>
            <li class=""><a>登山</a></li>
            <li class=""><a>景区</a></li>
            <li class=""><a>古城</a></li>     
        </ul>


        
        
<div style="display: block;" class="hotSpotsBoxc hotSpotsBox">
<ul>
    <li style="width:48px; padding-left:5px;">景区</li>
    <li style="width:104px;">天气</li>
    <li style="width:71px;">气温</li>
    <li style="width:60px;">旅游指数</li>
</ul>

<ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101070201.shtml" target="_blank">大连</a></li><li style="width:104px;overflow:hidden;"></li><li style="width:71px;"><b>29℃</b>/<span>20℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101120201.shtml" target="_blank">青岛</a></li><li style="width:104px;overflow:hidden;">多云</li><li style="width:71px;"><b>26℃</b>/<span>19℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101230201.shtml" target="_blank">厦门</a></li><li style="width:104px;overflow:hidden;">阵雨转多云</li><li style="width:71px;"><b>31℃</b>/<span>26℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101320101.shtml" target="_blank">香港</a></li><li style="width:104px;overflow:hidden;">多云</li><li style="width:71px;"><b>30℃</b>/<span>26℃</span></li><li style="width:60px;"><b>适宜</b></li></ul>
    
</div>
<div style="display: none;" class="hotSpotsBoxc hotSpotsBox">
<ul>
    <li style="width:48px; padding-left:5px;">景区</li>
    <li style="width:104px;">天气</li>
    <li style="width:71px;">气温</li>
    <li style="width:60px;">旅游指数</li>
</ul>
<ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101230905.shtml" target="_blank">武夷山</a></li><li style="width:104px;overflow:hidden;">大雨转阵雨</li><li style="width:71px;"><b>24℃</b>/<span>21℃</span></li><li style="width:60px;"><b>较不宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101271409.shtml" target="_blank">峨眉山</a></li><li style="width:104px;overflow:hidden;">阵雨转小到中雨</li><li style="width:71px;"><b>12℃</b>/<span>7℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101250409.shtml" target="_blank">南岳</a></li><li style="width:104px;overflow:hidden;">阵雨</li><li style="width:71px;"><b>20℃</b>/<span>17℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101101010.shtml" target="_blank">五台山</a></li><li style="width:104px;overflow:hidden;">中雨转小雨</li><li style="width:71px;"><b>16℃</b>/<span>10℃</span></li><li style="width:60px;"><b>一般</b></li></ul>
</div>
<div style="display: none;" class="hotSpotsBoxc hotSpotsBox">
<ul>
    <li style="width:48px; padding-left:5px;">景区</li>
    <li style="width:104px;">天气</li>
    <li style="width:71px;">气温</li>
    <li style="width:60px;">旅游指数</li>
</ul>
<ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101291401.shtml" target="_blank">丽江</a></li><li style="width:104px;overflow:hidden;">阵雨</li><li style="width:71px;"><b>26℃</b>/<span>17℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101271906.shtml" target="_blank">九寨沟</a></li><li style="width:104px;overflow:hidden;">小雨转中雨</li><li style="width:71px;"><b>21℃</b>/<span>16℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101300501.shtml" target="_blank">桂林</a></li><li style="width:104px;overflow:hidden;">阵雨</li><li style="width:71px;"><b>29℃</b>/<span>24℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101160808.shtml" target="_blank">敦煌</a></li><li style="width:104px;overflow:hidden;">阴转小雨</li><li style="width:71px;"><b>28℃</b>/<span>17℃</span></li><li style="width:60px;"><b>适宜</b></li></ul>
</div>
<div style="display: none;" class="hotSpotsBoxc hotSpotsBox">
<ul>
    <li style="width:48px; padding-left:5px;">景区</li>
    <li style="width:104px;">天气</li>
    <li style="width:71px;">气温</li>
    <li style="width:60px;">旅游指数</li>
</ul>
<ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101110101.shtml" target="_blank">西安</a></li><li style="width:104px;overflow:hidden;">阵雨转小到中雨</li><li style="width:71px;"><b>30℃</b>/<span>21℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101180901.shtml" target="_blank">洛阳</a></li><li style="width:104px;overflow:hidden;">多云转阵雨</li><li style="width:71px;"><b>31℃</b>/<span>22℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101210101.shtml" target="_blank">杭州</a></li><li style="width:104px;overflow:hidden;">阴转阵雨</li><li style="width:71px;"><b>28℃</b>/<span>21℃</span></li><li style="width:60px;"><b>适宜</b></li></ul><ul><li style="width:48px; padding-left:5px;"><a href="http://www.weather.com.cn/weather/101180801.shtml" target="_blank">开封</a></li><li style="width:104px;overflow:hidden;">多云</li><li style="width:71px;"><b>31℃</b>/<span>23℃</span></li><li style="width:60px;"><b>适宜</b></li></ul>
</div>
</div>
        
<div class="adposter_6120" id="adposter_6120"> 
<div class="adposter_6120" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 

     
      
      <div class="leida_weixing">
<h1>气象产品</h1>
<ul class="wei_one">
<li><a href="http://www.weather.com.cn/html/radar/JC_RADAR_AZ9210_JB.shtml" target="_blank">上海基本反射率单站雷达图</a></li>
<li><a href="http://www.weather.com.cn/html/radar/JC_YT_DL_WXZXCSYT.shtml" target="_blank">中国大陆区域彩色云图</a></li>
</ul>
<ul>
<li><a href="http://www.weather.com.cn/index/zxqxgg/wlstyb.shtml" target="_blank">未来三天天气趋势预报</a></li>
<li><a href="http://www.weather.com.cn/static/product.php?class=YB_WD_ZD24" target="_blank">全国最低气温分布</a></li>
<li><a href="http://www.weather.com.cn/index/zxqxgg/wlshtyb.shtml" target="_blank">未来十天天气趋势预报</a></li>
<li><a href="http://www.weather.com.cn/static/product.php?class=YB_WD_ZG24"  target="_blank">全国最高气温分布</a></li>
<li><a href="http://www.weather.com.cn/static/product.php?class=JC_JSL_02405" target="_blank">全国降水量实况</a></li>
<li><a href="http://www.weather.com.cn/static/product.php?class=YB_GL_SJL_24H" target="_blank">全国公路降水量预报</a></li>
<li><a href="http://www.weather.com.cn/static/product.php?class=YB_JSL_024" target="_blank">全国降水量预报</a></li>
<li><a href="http://www.weather.com.cn/static/product.php?class=YB_ZSLQ_KQWRKSTJ" target="_blank">重点城市空气质量预报</a></li>
</ul>
</div>

<div class="adposter_6121" id="adposter_6121">  
<div class="adposter_6121" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 



  </div>
  <div class="weatherLeft">

    <!-- Live start-->
    <div class="live">
      <iframe name="surf" src="http://flash.weather.com.cn/sk2/shikuang.swf?id=101020100" scrolling="no" width="650" height="240"  frameborder="0"></iframe>
    </div>
    <!-- Live end-->
 
 
     <!--IndexFc start-->
    <div id="aboutZS" style="overflow:hidden;width:650px;">
    
    <h2 class="weatheH1" style="position:relative;">
      今日生活指数
      <span style="position:absolute; right:4px;top:0px;*top:33px;"><a href="javascript:void(0)" class="ckqbs" style="color:#000;font-weight:bold;">热门指数</a><a href="javascript:void(0)" class="ckqbs">其它指数</a></span></h2>
      <div class="zs" id="zs0">
      <ul>
      
      <li>
          <section class="mask">
            <section class="area">
              <section class="detail gl">
                <aside><b>
                  必要
                  </b>
                  建议佩戴透射比为1级的浅色太阳镜
                </aside><a></a>
                </section>
              <section class="imgArea"><img alt="太阳镜指数" src="/m2/i/zs/zs_pic/22.jpg">
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
                必要
                </span>
              </section>
            </section>
          </section>
          <h3><a><b>太阳镜指数</b></a></h3>
          <span class="sl"></span> </li>
      
      
      
      <li>
          <section class="mask">
            <section class="area">
              <section class="detail ct">
                <aside><b></b>
                  适合穿T恤、短薄外套等夏季服装。
                </aside>
                <a target="_blank" href="http://www.weather.com.cn/indexfc/ct/101020100.shtml"></a></section>
              <section class="imgArea"><a title="穿衣指数" target="_blank" href="http://www.weather.com.cn/indexfc/ct/101020100.shtml"><img alt="穿衣指数" src="/m2/i/zs/zs_pic/5.jpg"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;"></span>   
              
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://www.weather.com.cn/indexfc/ct/101020100.shtml"><b>穿衣指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail tr">
                <aside><b>
                  适宜
                  </b>
                  风稍大,但仍可尽情地享受大自然风光。
                </aside>
                <a target="_blank" href="http://www.weather.com.cn/indexfc/tr/101020100.shtml"></a></section>
              <section class="imgArea"><a title="旅游指数" target="_blank" href="http://www.weather.com.cn/indexfc/tr/101020100.shtml"><img alt="旅游指数" src="/m2/i/zs/zs_pic/12.jpg"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
               适宜
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://www.weather.com.cn/indexfc/tr/101020100.shtml"><b>旅游指数(24日白天)</b></a></h3>
          <span class="qlx"></span>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail yd">
                <aside><b>
                  较适宜
                  </b>
                  请适当降低运动强度并注意户外防风。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1395.php"></a></section>
              <section class="imgArea"><a  title="运动指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1395.php"><img alt="运动指数" src="/m2/i/zs/zs_pic/1.jpg"></a>
               <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
               较适宜
              </span>
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1395.php"><b>运动指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail xc">
                <aside><b>
                  较适宜
                  </b>
                  无雨且风力较小,易保持清洁度。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1393.php"></a></section>
              <section class="imgArea"><a title="洗车指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1393.php"><img alt="洗车指数" src="/m2/i/zs/zs_pic/3.jpg"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
                较适宜
    </span>             
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1393.php"><b>洗车指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail pp">
                <aside><b>
                  去油
                  </b>
                  请选用露质面霜打底,水质无油粉底霜。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1397.php"></a>
                </section>
              <section class="imgArea"><a title="化妆指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1397.php"><img alt="化妆指数" src="/m2/i/zs/zs_pic/6.jpg"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
                去油
      
    </span> 
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1397.php"><b>化妆指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail gm">
                <aside><b>
                  少发
                  </b>
                  无明显降温,感冒机率较低。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1391.php"></a>
                </section>
              <section class="imgArea"><a title="感冒指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1391.php"><img alt="感冒指数" src="/m2/i/zs/zs_pic/19.jpg"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
                少发

    </span> 
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1391.php"><b>感冒指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail uv">
                <aside><b></b>
                  辐射较弱,涂擦SPF12-15、PA+护肤品。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1387.php"></a>
                </section>
              <section class="imgArea"><a title="紫外线指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1387.php"><img alt="紫外线指数"  src="/m2/i/zs/zs_pic/20.jpg"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;"></span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1387.php"><b>紫外线指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail co">
                <aside><b>
                  较舒适
                  </b>
                  天气晴好,湿度较大,早晚凉爽,午后偏热。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1051.php"></a></section>
              <section class="imgArea"><a title="舒适度指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1051.php"><img alt="舒适度指数" src="/m2/i/zs/zs_pic/7.jpg"></a>
               <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              较舒适
      
    </span> 
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1051.php"><b>舒适度指数</b></a></h3>
        </li>
      </ul>
    </div>
    <div class="zs yinc" id="zs1" style="display:none;">
      <ul>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail gj">
                <aside><b>
                  较适宜
                  </b>
                  风稍大,出门逛街前记得给秀发定型。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1404.php"></a></section>
              <section class="imgArea"><a title="逛街指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1404.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              较适宜
              </span> 
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1404.php"><b>逛街指数</b></a></h3>
        </li>
        
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail mf">
                <aside><b>
                  一般
                  </b>
                  天热,头皮皮脂分泌多,注意清洁。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1405.php"></a></section>
              <section class="imgArea"><a title="美发指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1405.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              一般
      
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1405.php"><b>美发指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail ys">
                <aside><b>
                  不带伞
                  </b>
                  天气较好,不用带雨伞。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1400.php"></a></section>
              <section class="imgArea"><a title="雨伞指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1400.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              不带伞
      
              </span>
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1400.php"><b>雨伞指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail jt">
                <aside><b>
                  良好
                  </b>
                  气象条件良好,车辆可以正常行驶。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1392.php"></a></section>
              <section class="imgArea"><a title="交通指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1392.php"></a>
               <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
               良好
    </span> 
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1392.php"><b>交通指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail lk">
                <aside><b>
                  干燥
                  </b>
                  天气较好,路面较干燥,路况较好。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1401.php"></a></section>
              <section class="imgArea"><a title="路况指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1401.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              干燥
    </span> 
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1401.php"><b>路况指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail cl">
                <aside><b>
                  较适宜
                  </b>
                  感觉有点凉,晨练时着装不要过于单薄。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1390.php"></a></section>
              <section class="imgArea"><a title="晨练指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1390.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              较适宜
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1390.php"><b>晨练指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail dy">
                <aside><b>
                  较适宜
                  </b>
                  天气稍热会对垂钓产生一定影响。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1398.php"></a></section>
              <section class="imgArea"><a title="钓鱼指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1398.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
               较适宜
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1398.php"><b>钓鱼指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail hc">
                <aside><b>
                  较适宜
                  </b>
                  风稍大会对划船产生一定影响。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1402.php"></a></section>
              <section class="imgArea"><a title="划船指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1402.php"></a>
               <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              较适宜
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1402.php"><b>划船指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail yh">
                <aside><b>
                  较适宜
                  </b>
                  不用担心天气来调皮捣乱而影响了兴致。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1399.php"></a></section>
              <section class="imgArea"><a title="约会指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1399.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
              较适宜
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1399.php"><b>约会指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail ls">
                <aside><b>
                  适宜
                  </b>
                  天气不错,抓紧时机让衣物晒太阳吧。
                </aside>
                <a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1394.php"></a></section>
              <section class="imgArea"><a title="晾晒指数" target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1394.php"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
               适宜
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://baike.weather.com.cn/index.php?doc-view-1394.php"><b>晾晒指数</b></a></h3>
        </li>
        <li>
          <section class="mask">
            <section class="area">
              <section class="detail fs">
                <aside><b>
                  较弱
                  </b>
                  涂抹12-15SPF,PA+护肤品。
                </aside>
                <a target="_blank" href="http://www.weather.com.cn/indexfc/fs/101020100.shtml"></a></section>
              <section class="imgArea"><a title="防晒指数" target="_blank" href="http://www.weather.com.cn/indexfc/fs/101020100.shtml"></a>
              <span style="float: right;font-size: 16px;font-weight: bold;margin-right: 15px;margin-top: -2px;">
               较弱
    </span>   
              </section>
            </section>
          </section>
          <h3><a target="_blank" href="http://www.weather.com.cn/indexfc/fs/101020100.shtml"><b>防晒指数</b></a></h3>
        </li>
      </ul>
    </div>
  </div>
 
 
 
<div class="adposter_6123" id="adposter_6123">
<div class="adposter_6123" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 

 
 
    
    <!--RelaCity start-->
    <div class="forecast">
      <h1 class="weatheH1">
        周边地区今日天气
        </h1>
        <div class="forecastBox" id="forecastID">
        <dl><dt><a href = "http://www.weather.com.cn/weather/101210101.shtml" target="_blank" title="杭州天气预报">杭州</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n03.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>28℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101210401.shtml" target="_blank" title="宁波天气预报">宁波</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n03.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>25℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101210301.shtml" target="_blank" title="嘉兴天气预报">嘉兴</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n03.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>27℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>20℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190401.shtml" target="_blank" title="苏州天气预报">苏州</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n02.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>28℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>22℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101210201.shtml" target="_blank" title="湖州天气预报">湖州</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n02.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>28℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190201.shtml" target="_blank" title="无锡天气预报">无锡</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n01.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>30℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>22℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101211101.shtml" target="_blank" title="舟山天气预报">舟山</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n03.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>26℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101191101.shtml" target="_blank" title="常州天气预报">常州</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n02.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>30℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>22℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101210501.shtml" target="_blank" title="绍兴天气预报">绍兴</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n03.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>25℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190501.shtml" target="_blank" title="南通天气预报">南通</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n01.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>29℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190507.shtml" target="_blank" title="启东天气预报">启东</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d02.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n01.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>27℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190408.shtml" target="_blank" title="太仓天气预报">太仓</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n01.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>29℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>21℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190404.shtml" target="_blank" title="昆山天气预报">昆山</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n02.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>28℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>22℃</b></a></dd></dl><dl><dt><a href = "http://www.weather.com.cn/weather/101190803.shtml" target="_blank" title="丰县天气预报">丰县</a></dt><dd><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/d01.gif"  /></a><a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank"><img src="/m2/i/icon_weather/21x15/n01.gif"  /></a><a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank"><span>32℃</span></a>/<a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank"><b>23℃</b></a></dd></dl>
        </div>
    </div>
    <!--RelaCity end-->
    





    

    
    
      
     

 
<div class="adpos">   
<div class="adposter_6124" id="adposter_6124"> 
<div class="adposter_6124" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 
</div>

    
    
  <div class="lts">
  <h1 class="weatheH1">社区互动</h1>
  



<div class="lesa">      
<dl><dt><a href="http://club.weather.com.cn/thread-584535-1-1.html" title="80岁食人巨鳄遭围捕" target="_blank"><img src="http://i.weather.com.cn/images/cn/public/2014/06/23/4B7425EB6231EBD19141CA6DF30A486A.jpg" alt="80岁食人巨鳄遭围捕" width="120" height="90" alter="80岁食人巨鳄遭围捕"/></a></dt><dd><a href="http://club.weather.com.cn/thread-584535-1-1.html" title="80岁食人巨鳄遭围捕" target="_blank"  style="color:">80岁食人巨鳄遭围捕</a></dd></dl><dl><dt><a href="http://club.weather.com.cn/thread-584536-1-1.html" title="疣猪竟与狮子生死较量" target="_blank"><img src="http://i.weather.com.cn/images/cn/public/2014/06/23/D16ACA50DBE7586A2DB9E4DC08B2171C.jpg" alt="疣猪竟与狮子生死较量" width="120" height="90" alter="疣猪竟与狮子生死较量"/></a></dt><dd><a href="http://club.weather.com.cn/thread-584536-1-1.html" title="疣猪竟与狮子生死较量" target="_blank"  style="color:">疣猪竟与狮子生死较量</a></dd></dl><div style="clear:both;"></div><p><a href="http://club.weather.com.cn/thread-575578-1-1.html" target="_blank"  style="color:">震惊!无所不食怪树吞食成年马</a></p><p><a href="http://club.weather.com.cn/thread-571904-1-1.html" target="_blank"  style="color:">丛林争斗:狮子与凶悍鳄鱼争食物</a></p><p><a href="http://club.weather.com.cn/thread-558710-1-1.html" target="_blank"  style="color:">7岁女孩比兔子还要小</a></p><p><a href="http://club.weather.com.cn/thread-571906-1-1.html" target="_blank"  style="color:">温州渔民捕获万斤大鱼</a></p>
</div>

  <div class="relight">
    <h2>一周热帖排行</h2>
    <ul>

<li><a href="http://club.weather.com.cn/thread-541794-1-1.html" target="_blank"  style="color:">新疆拳头大陨石标价8千万 约和地球同龄</a></li><li><a href="http://club.weather.com.cn/thread-541426-1-1.html" target="_blank"  style="color:">江苏男子捕获10.25公斤百岁甲鱼后放生</a></li><li><a href="http://club.weather.com.cn/thread-533892-1-1.html" target="_blank"  style="color:">雪人真实身份仍存疑 罕见熊类或只是品种之一</a></li><li><a href="http://3g.weather.com.cn/wzfw/zgtqtpd/watch.shtml" target="_blank"  style="color:">中国天气通进驻三星首款智能手表Galaxy Gear</a></li><li><a href="http://club.weather.com.cn/thread-541312-1-1.html" target="_blank"  style="color:">揭秘横行无忌椰子蟹 体型庞大的爬树高手 </a></li><li><a href="http://club.weather.com.cn/thread-530359-1-1.html" target="_blank"  style="color:">尼泊尔“世界最矮的人” 不能独立行动常引围观</a></li>

    </ul>
</div>


  
  <p class="retie"><span>热门版块</span><a href="http://club.weather.com.cn/forum-91-1.html" target="_blank">图片征集</a><a href="http://club.weather.com.cn/forum-67-1.html" target="_blank">天气插件</a><a href="http://club.weather.com.cn/forum-61-1.html" target="_blank">降水乐园</a><a href="http://club.weather.com.cn/forum-62-1.html" target="_blank">生活天气</a><a href="http://club.weather.com.cn/forum-63-1.html" target="_blank">旅游天气</a><a href="http://club.weather.com.cn/forum-64-1.html" target="_blank">天气科普</a></p>
</div>




<div class="tjztsa">
  <h1 class="weatheH1">近期重大天气事件</h1>
  <div class="tjztLeft">
  <p>6月23日</p><p>6月22日</p><p>6月21日</p><p>6月20日</p>

</div>
<div class="tjztRight">

<div class="tjztdl"><dl><dt><a href="/index/2014/06/jqzdtqsj/2143015.shtml" title="内蒙古“西旱东涝” 明后天中东部迎中到大雨" target="_blank"><img src="http://i.weather.com.cn/images/cn/index/jqzdtqsj/2014/06/23/20530C81CEE8E4709C883C5CC17EDAEE_s.jpg" alt="内蒙古“西旱东涝” 明后天中东部迎中到大雨" width="120" height="90" alter="内蒙古“西旱东涝” 明后天中东部迎中到大雨"/></a><dd><a href="/index/2014/06/jqzdtqsj/2143015.shtml" title="内蒙古“西旱东涝” 明后天中东部迎中到大雨" target="_blank">内蒙古“西旱东涝” 明后天中东部迎中到大雨</a><br />6月中旬以来,内蒙古中东部地区降雨频繁,部分地区出现洪涝灾害;但西部地区降水偏少,局地旱情严重。<a href="/index/2014/06/jqzdtqsj/2143015.shtml" title="内蒙古“西旱东涝” 明后天中东部迎中到大雨" target="_blank" class="xq">【详情】</a></dd></dl></div><div class="tjztdl"><dl><dt><a href="/index/2014/06/jqzdtqsj/2142441.shtml" title="江西入汛来最强暴雨致78.4万人受灾" target="_blank"><img src="http://i.weather.com.cn/images/cn/index/jqzdtqsj/2014/06/22/43959EEBF1603A0A228CC12E287B35FE_s.jpg" alt="江西入汛来最强暴雨致78.4万人受灾" width="120" height="90" alter="江西入汛来最强暴雨致78.4万人受灾"/></a><dd><a href="/index/2014/06/jqzdtqsj/2142441.shtml" title="江西入汛来最强暴雨致78.4万人受灾" target="_blank">江西入汛来最强暴雨致78.4万人受灾</a><br />昨天江西连续第三天出现了大范围的暴雨到大暴雨。强降雨致河流上涨,部分水库超警戒水位。<a href="/index/2014/06/jqzdtqsj/2142441.shtml" title="江西入汛来最强暴雨致78.4万人受灾" target="_blank" class="xq">【详情】</a></dd></dl></div><div class="tjztdl"><dl><dt><a href="/index/2014/06/jqzdtqsj/2142064.shtml" title="浙江启动暴雨Ⅲ级应急响应 将迎连续大雨暴雨" target="_blank"><img src="http://i.weather.com.cn/images/cn/index/jqzdtqsj/2014/06/21/A8F4968D5B4AE3EB73D53ED9E7B20C98_s.jpg" alt="浙江启动暴雨Ⅲ级应急响应 将迎连续大雨暴雨" width="120" height="90" alter="浙江启动暴雨Ⅲ级应急响应 将迎连续大雨暴雨"/></a><dd><a href="/index/2014/06/jqzdtqsj/2142064.shtml" title="浙江启动暴雨Ⅲ级应急响应 将迎连续大雨暴雨" target="_blank">浙江启动暴雨Ⅲ级应急响应 将迎连续大雨暴雨</a><br />专家提醒,未来一周梅雨带维持和摆动,浙江降水过程频繁,多大雨暴雨天气,累计雨量大,并伴有短时强降水、雷电等强对流天气。<a href="/index/2014/06/jqzdtqsj/2142064.shtml" title="浙江启动暴雨Ⅲ级应急响应 将迎连续大雨暴雨" target="_blank" class="xq">【详情】</a></dd></dl></div><div class="tjztdl"><dl><dt><a href="/index/2014/06/jqzdtqsj/2141552.shtml" title="中国气象局应急响应升为Ⅲ级 应对南方强降雨" target="_blank"><img src="http://i.weather.com.cn/images/cn/index/jqzdtqsj/2014/06/20/2137F625C13EA707448EBB61E4E880ED_s.jpg" alt="中国气象局应急响应升为Ⅲ级 应对南方强降雨" width="120" height="90" alter="中国气象局应急响应升为Ⅲ级 应对南方强降雨"/></a><dd><a href="/index/2014/06/jqzdtqsj/2141552.shtml" title="中国气象局应急响应升为Ⅲ级 应对南方强降雨" target="_blank">中国气象局应急响应升为Ⅲ级 应对南方强降雨</a><br />来自中国气象局应急办的消息,贵湘赣闽桂等地已出现强降雨,中央气象台6月20日10时继续发布暴雨黄色预警。中国气象局局领导于10时30分签发命令,提升暴雨Ⅳ级为Ⅲ级应急响应。<a href="/index/2014/06/jqzdtqsj/2141552.shtml" title="中国气象局应急响应升为Ⅲ级 应对南方强降雨" target="_blank" class="xq">【详情】</a></dd></dl></div>

  </div>
</div>

   
  
  </div>
  
</div>




  
  <div class="cleardiv"></div>
</div>


<div class="adposter_6127" id="adposter_6127"> 
<div class="adposter_6127" style="background:url(/m2/i/index/loading.gif) center center no-repeat #eee"></div>
</div> 







<div class="bottomFooter">
<span class="footerNav"><a href="http://www.weather.com.cn/wzfw/gywm/" target="_blank">关于我们</a>-<a href="http://marketing.weather.com.cn/" target="_blank">营销中心</a>-<a href="http://ad.weather.com.cn/" target="_blank">广告服务</a>-<a href="http://www.weather.com.cn/wzfw/lxwm/" target="_blank">联系我们</a>-<a href="http://www.weather.com.cn/wzfw/ryzp/" target="_blank">人员招聘</a>-<a href="http://www.weather.com.cn/wzfw/wzls/" target="_blank">网站律师</a>-<a href="http://www.weather.com.cn/wzfw/kfzx/" target="_blank">客服中心</a>-<a href="http://club.weather.com.cn/member.php?mod=reuser.php" target="_blank">会员注册</a>-<a href="http://3g.weather.com.cn" style="color:#ffea00;font-weight:bold;" target="_blank">中国天气通</a>-<a href="http://www.weather.com.cn/wzfw/wapb/" target="_blank">mobile版</a>-<a href="http://wei.weather.com.cn/" target="_blank">微天气</a>-<a href="http://www.weather.com.cn/wzfw/sybz/" target="_blank">使用帮助</a>-<a href="http://www.weather.com.cn/wzfw/wzdt/" target="_blank">网站地图</a>-<a href="http://www.weather.com.cn/wzfw/bqsm/" target="_blank">版权声明</a></span>
  <p> 客户服务热线:400-6000-121     客服邮箱:<a href="mailto:service@weather.com.cn">service@weather.com.cn</a> 广告服务:010-62134569<br />
     Copyright&copy;中国气象局公共气象服务中心 All Rights Reserved (2008-2014) 版权所有 复制必究<br />
    制作维护:中国气象局公共气象服务中心、上海市气象局<br />
    郑重声明:中国天气网<a href="http://www.weather.com.cn/wzfw/bqsm/index.shtml">版权所有</a>,未经书面授权禁止使用</p>
  <span class="copyIcp"> 京ICP证010385号 京公网安备11041400134号 增值电信业务经营许可证B2-20050053 </span> </div>
<script type="text/javascript">
try{
var cvalue=document.getElementById("colorid").value;
document.getElementById(cvalue).className="move";
}catch(e){}
</script>



<div id="ab">
<img border="0" usemap="#Map" src="http://www.weather.com.cn/m2/i/xuanfu_1.jpg" title="中国天气通客户端" alt="中国天气通客户端">
<map name="Map">
    <area href="http://3g.weather.com.cn/" coords="7,50,102,158" shape="rect">
    <area href="#" coords="19,10,80,27" shape="rect">
    <area class="er_close" href="javascript:void(0)" coords="89,9,105,24" shape="rect">
         <area shape="rect" coords="8,205,102,314" href="http://wei.weather.com.cn/" target="_blank" />
</map></div>


<div id="ccs">
<a href="http://wei.weather.com.cn" title="微天气营销平台" alt="微天气营销平台" target="_blank"><img  src="http://www.weather.com.cn/m2/i/weitq.jpg?id=img" title="微天气营销平台" alt="微天气营销平台" usemap="#Map3">
<map name="Map3" id="Map3">
    <area shape="rect" coords="83,1,110,26" href="javascript:void(0)" class="wei_close" />
</map>


</a>
</div>
<script type="text/javascript" src="http://www.weather.com.cn/m2/j/iphone_tan.js?id=2014"></script>




<div class="ad-container">
<div class="adposter_pos" data-posid="adposter_6125">
<div class="adposter_6125"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_001_06%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"214","height":"90","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6125&pos=0&ch=9993&act=1310&order=641&contract=182&host=153&ck=18404","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 
  
</div>
<div class="adposter_pos" data-posid="adposter_6126">
<div class="adposter_6126"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_001_04%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"728","height":"90","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6126&pos=0&ch=9993&act=1309&order=641&contract=182&host=153&ck=18404","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 
   
</div>
<div class="adposter_pos" data-posid="adposter_6116">
<div class="adposter_6116"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%27text%2Fjavascript%27%3E%0D%0ATQ_FillSlot%28%2710000_001_02%27%29%3B%0D%0A%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6116&pos=0&ch=9993&act=1389&order=641&contract=182&host=153&ck=18474","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6122">
<div class="adposter_6122"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%27text%2Fjavascript%27%3E%0D%0ATQ_FillSlot%28%2710000_001_03%27%29%3B%0D%0A%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"650","height":"90","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6122&pos=0&ch=9993&act=1291&order=641&contract=182&host=153&ck=18382","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6127">
<div class="adposter_6127"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%27text%2Fjavascript%27%3E%0D%0ATQ_FillSlot%28%2710000_001_07%27%29%3B%0D%0A%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6127&pos=0&ch=9993&act=1278&order=641&contract=182&host=153&ck=18374","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6117">
<div class="adposter_6117"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%27text%2Fjavascript%27%3E%0D%0ATQ_FillSlot%28%2710000_001_05%27%29%3B%0D%0A%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6117&pos=0&ch=9993&act=1448&order=641&contract=182&host=153&ck=18534","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6118">
<div class="adposter_6118"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3E%0D%0ATQ_FillSlot%28%2210000_005_06%22%29%3B%0D%0A%3C%2Fscript%3E%0D%0A","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6118&pos=0&ch=9993&act=1461&order=640&contract=181&host=154&ck=18547","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6119">
<div class="adposter_6119"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_005_05%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6119&pos=0&ch=9993&act=1302&order=640&contract=181&host=154&ck=18389","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6120">
<div class="adposter_6120"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_005_03%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6120&pos=0&ch=9993&act=1455&order=640&contract=181&host=154&ck=18543","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6121">
<div class="adposter_6121"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_005_04%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"300","height":"250","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6121&pos=0&ch=9993&act=1456&order=640&contract=181&host=154&ck=18545","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6123">
<div class="adposter_6123"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_005_01%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"650","height":"90","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6123&pos=0&ch=9993&act=1274&order=640&contract=181&host=154&ck=18365","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>
<div class="adposter_pos" data-posid="adposter_6124">
<div class="adposter_6124"> 
 <script>WR_PARAMETER.WR_AD_DATA={"show":"true","type":"CODE","files":[{"file":null,"link":"","IsFlash":"img"}],"code":"%3Cscript+type%3D%22text%2Fjavascript%22%3ETQ_FillSlot%28%2710000_005_02%27%29%3B%3C%2Fscript%3E","closebutton":true,"closetime":false,"under_file":true,"under_or_up":true,"toppx":40,"width":"650","height":"90","width_under":20,"pagewidth":960,"min_screen_w":1024,"opacity":0.9,"staytime":5,"speed":2,"videotitle":"","bgcolor":"000","bdcolor":"000","filepath":"http:\/\/poster.weather.com.cn\/p_files\/player\/player.swf","autostart":true,"repeat":"none","ratingimg":"http:\/\/poster.weather.com.cn\/a.gif?i=&p=6124&pos=0&ch=9993&act=1275&order=640&contract=181&host=154&ck=18367","direct":[]};WRATING.PLAY.ACTION(WR_PARAMETER.WR_AD_DATA);</script> 
 </div> 

</div>

</div>



<script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F080dabacb001ad3dc8b9b9049b36d43b' type='text/javascript'%3E%3C/script%3E"));
</script>
<script>  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-46054715-1', 'weather.com.cn');
  ga('send', 'pageview');
</script>

</body>
</html>


<!--Generated By TurboCMS.Java V6.0 Build6002,Tue Jun 24 08:15:09 CST 2014,http://www.TurboCMS.com-->
View Code

先提取天气预报部分(如图表格)

 

代码为

string patten=@"<div\s*class=\""weatherYubaoBox\"">(.|\s)*?</div>";
        Regex rg=new Regex(patten, RegexOptions.Multiline);
        text2=rg.Match(text2).Value;

得到的html部分为

<div class="weatherYubaoBox">
          <table class="tableTop" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <th width="27%">日期</th>
            <th width="28%">天气现象</th>
            <th width="15%">气温</th>
            <th width="15%">风向</th>
            <th width="15%">风力</th>
          </tr>
          </table>
          <!--day 1-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历五月廿七">24日&nbsp;星期二</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d01.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">多云</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>29℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n02.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-770.php" target="_blank"></a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 2-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历五月廿八">25日&nbsp;星期三</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d07.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-612.php" target="_blank">小雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>25℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n08.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-933.php" target="_blank">中雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 3-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历五月廿九">26日&nbsp;星期四</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d09.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-934.php" target="_blank">大雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>25℃</strong></b>
              </a>

            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n09.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-934.php" target="_blank">大雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          
                    <!--day 4-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a title="农历六月初一">27日&nbsp;星期五</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d08.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-933.php" target="_blank">中雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>26℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n07.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-612.php" target="_blank">小雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 5-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a class="cyclePrediction" title="农历六月初二">28日&nbsp;星期六</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d08.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-933.php" target="_blank">中雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>27℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n03.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-1370.php" target="_blank">阵雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>23℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 6-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="15%" rowspan="2" class="t0" style="background:#f4f7fc;"><a class="cyclePrediction" title="农历六月初三">29日&nbsp;星期日</a></td>
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d01.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-769.php" target="_blank">多云</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>28℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东风
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          <tr>
            <td  style="background-color:#ebeff8;">夜间</td>
            <td style="background-color:#ebeff8;">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/n03.gif" />
              </a>
            </td>
            <td style="background-color:#ebeff8;"><a href ="http://baike.weather.com.cn/index.php?doc-view-1370.php" target="_blank">阵雨</a></td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1386.php" target="_blank">
                <span>低温 <strong>22℃</strong></span>
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td style="background-color:#ebeff8;">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
          </tr>
          </table>
          <!--day 7-->
          <table class="yuBaoTable" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
            <td width="15%" class="t0" style="background:#f4f7fc;"><a title="农历六月初四">30日&nbsp;星期一</a></td>
            <!-- START WRating v1.0 -->
<script type="text/javascript" src="http://c.wrating.com/a1.js">
</script>
<script type="text/javascript">
var vjAcc="860010-2151030100";
var wrUrl="http://c.wrating.com/";
vjTrack("");
</script>
<noscript><img src="http://c.wrating.com/a.gif?a=&c=860010-2151030100" width="1" height="1"/></noscript>
<!-- END WRating v1.0 -->
            
            
            
            <td width="12%" style="background:#f4f7fc;">白天</td>
            <td width="10%">
              <a href="http://www.weather.com.cn/static/html/legend.shtml" target="_blank">
                <img src="/m2/i/icon_weather/29x20/d03.gif" />
              </a>
            </td>
            <td width="18%"><a href ="http://baike.weather.com.cn/index.php?doc-view-1370.php" target="_blank">阵雨</a></td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-1148.php" target="_blank">
                <b>高温 <strong>27℃</strong></b>
              </a>
            </td>
            <td width="15%">
              <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                东南风
              </a>
            </td>
            <td width="15%">
            <a href="http://baike.weather.com.cn/index.php?doc-view-778.php" target="_blank">
                3-4级
              </a>
            </td>
    </tr>
          </table>
        </div>
View Code

再对这部分提取每一个数据

(全用正则表达式匹配)

    public static string getTIanQiYuBaoJson() 返回一个json
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.IO;
using System.Net;
using System.Text;
using System.Web.Script.Serialization;
using System.Xml;
using PublicLibrary;
using System.Text.RegularExpressions;
namespace ClassLibs
{    
    public class TianQiYuBao
    {
        
        public TianQiYuBao()
        {
        }
    public static string getTIanQiYuBaoJson() 
    {
        return ParseTIanQiYuBao(PostWebRequest()) ;
    }
    public static string ParseTIanQiYuBao(string msg)        
    {
        msg=Regex.Replace(msg, @"\s", "");
        
        StringBuilder sb=new StringBuilder ();
        sb.Append("{");
        MatchCollection mc;
        Regex r = new Regex(@"<table[\s\S]*?</table>", RegexOptions.Multiline);
        mc = r.Matches(msg);
        for (int i = 1; i < mc.Count; i++)
        { 
            if(i==1)
                sb.Append("\"di"+i.ToString()+"tian\":{");
            else 
                sb.Append(",\"di"+i.ToString()+"tian\":{");
            ParseTable(i,mc[i].Value,sb);
            sb.Append("}");
        }
        sb.Append("}");
        
        return sb.ToString();
    }
    private  static void ParseTable(int n,string msg,StringBuilder sb)        
    {
        
        MatchCollection mc;
        Regex r = new Regex(@"<tr>[\s\S]*?</tr>", RegexOptions.Multiline);
        mc = r.Matches(msg);
        string one=mc[0].Value;
        sb.Append("\"one\":{");
        ParseTR1(one,sb) ;
        sb.Append("}");
        
        if(mc.Count>1)
        {
            string two=mc[1].Value;
            sb.Append(",\"two\":{");
            ParseTR2(two,sb) ;
            sb.Append("}");
        }
        
    }
    private  static void ParseTR1(string msg,StringBuilder sb)        
    {        
        MatchCollection mc;
        Regex r =new Regex(@"<td[\s\S]*?</td>", RegexOptions.Multiline);
        mc = r.Matches(msg);
        getRiQi(mc[0].Value, sb) ;
        getWeek(mc[0].Value, sb) ;        
        getDayEvning(mc[1].Value, sb) ;    
        getSrc(mc[2].Value, sb) ;    
        getWeather(mc[3].Value, sb) ;
        getState1(mc[4].Value, sb) ;
        getDegree(mc[4].Value, sb) ;
        getFengXiang(mc[5].Value, sb) ;
        getFengLi(mc[6].Value, sb) ;
    }
    private  static void ParseTR2(string msg,StringBuilder sb)        
    {
        MatchCollection mc;
        Regex r =new Regex(@"<td[\s\S]*?</td>", RegexOptions.Multiline);
        mc = r.Matches(msg);    
        getDayEvning(mc[0].Value, sb) ;    
        getSrc(mc[1].Value, sb) ;    
        getWeather(mc[2].Value, sb) ;
        getState2(mc[3].Value, sb) ;
        getDegree(mc[3].Value, sb) ;
        getFengXiang(mc[4].Value, sb) ;
        getFengLi(mc[5].Value, sb) ;
    }
    private  static void getRiQi(string msg,StringBuilder sb)        
    {
        string riqiweek=Regex.Match(msg, @"(?<=<a[\s\S]*?>).*?(?=<)").Value;
        string riqi=Regex.Match(riqiweek, @".*?(?=&)").Value;
        sb.Append("\"riqi\":\""+riqi+"\",");
    }
    private  static void getWeek(string msg,StringBuilder sb)        
    {
        string riqiweek=Regex.Match(msg, @"(?<=<a[\s\S]*?>).*?(?=<)").Value;
        string week=Regex.Match(riqiweek, @"(?<=;).*").Value;
        sb.Append("\"week\":\""+week+"\",");
    }
    private  static void getDayEvning(string msg,StringBuilder sb)        
    {
        string de=Regex.Match(msg, @"(?<=>).*?(?=<)").Value;
        sb.Append("\"DayEvning\":\""+de+"\",");
    }
    
    private  static void getSrc(string msg,StringBuilder sb)        
    {
        string src=Regex.Match(msg, @"(?<=src="").*?(?="")").Value;
        src="http://www.weather.com.cn"+src;
        sb.Append("\"src\":\""+src+"\",");
    }
    private  static void getWeather(string msg,StringBuilder sb)        
    {
        string weather=Regex.Match(msg, @"(?<=<a[\s\S]*?>).*?(?=<)").Value;
        sb.Append("\"weather\":\""+weather+"\",");
    }
    private  static void getState1(string msg,StringBuilder sb)        
    {    string state=Regex.Match(msg, @"(?<=<b>).*?(?=<)").Value;
        sb.Append("\"state\":\""+state+"\",");
    }
    private  static void getState2(string msg,StringBuilder sb)        
    {    string state=Regex.Match(msg, @"(?<=<span>).*?(?=<)").Value;
        sb.Append("\"state\":\""+state+"\",");
    }
    private  static void getDegree(string msg,StringBuilder sb)        
    {
        string degree=Regex.Match(msg, @"\d{1,2}℃").Value;
        sb.Append("\"degree\":\""+degree+"\",");
    }
    private  static void getFengXiang(string msg,StringBuilder sb)        
    {    string fengxiang=Regex.Match(msg, @"(?<=>)[^>]*?风").Value;
        sb.Append("\"fengxiang\":\""+fengxiang+"\",");
    }
    private  static void getFengLi(string msg,StringBuilder sb)        
    {
        string fengli=Regex.Match(msg, @"(?<=>)[^>]*?级").Value;
        sb.Append("\"fengli\":\""+fengli+"\"");
    }
    private  static string PostWebRequest()        
    {
        HttpWebRequest webRequest2 = (HttpWebRequest)WebRequest.Create(new Uri("http://www.weather.com.cn/weather/101020100.shtml"));
        HttpWebResponse response2 = (HttpWebResponse)webRequest2.GetResponse();
        StreamReader sr2=new StreamReader(response2.GetResponseStream(), Encoding.UTF8);            
        string text2 = sr2.ReadToEnd();
        
        string patten=@"<div\s*class=\""weatherYubaoBox\"">(.|\s)*?</div>";
        Regex rg=new Regex(patten, RegexOptions.Multiline);
        text2=rg.Match(text2).Value;
        //Lib.WriteLog(text2);
        return text2;
    }        
//小米接口
//http://weatherapi.market.xiaomi.com/wtr-v2/weather?cityId=101010300&imei=529e2dd3d767bdd3595eec30dd481050&device=pisces&miuiVersion=JXCCNBD20.0&modDevice=&source=miuiWeatherApp    
  }
}

getTIanQiYuBaoJson() 返回的json为
{
    "di1tian": {
        "one": {
            "riqi": "24日",
            "week": "星期二",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d01.gif",
            "weather": "多云",
            "state": "高温",
            "degree": "29℃",
            "fengxiang": "东南风",
            "fengli": "3-4级"
        },
        "two": {
            "DayEvning": "夜间",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/n02.gif",
            "weather": "",
            "state": "低温",
            "degree": "23℃",
            "fengxiang": "东南风",
            "fengli": "3-4级"
        }
    },
    "di2tian": {
        "one": {
            "riqi": "25日",
            "week": "星期三",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d07.gif",
            "weather": "小雨",
            "state": "高温",
            "degree": "26℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        },
        "two": {
            "DayEvning": "夜间",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/n08.gif",
            "weather": "中雨",
            "state": "低温",
            "degree": "23℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        }
    },
    "di3tian": {
        "one": {
            "riqi": "26日",
            "week": "星期四",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d09.gif",
            "weather": "大雨",
            "state": "高温",
            "degree": "25℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        },
        "two": {
            "DayEvning": "夜间",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/n09.gif",
            "weather": "大雨",
            "state": "低温",
            "degree": "23℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        }
    },
    "di4tian": {
        "one": {
            "riqi": "27日",
            "week": "星期五",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d08.gif",
            "weather": "中雨",
            "state": "高温",
            "degree": "26℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        },
        "two": {
            "DayEvning": "夜间",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/n07.gif",
            "weather": "小雨",
            "state": "低温",
            "degree": "23℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        }
    },
    "di5tian": {
        "one": {
            "riqi": "28日",
            "week": "星期六",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d08.gif",
            "weather": "中雨",
            "state": "高温",
            "degree": "27℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        },
        "two": {
            "DayEvning": "夜间",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/n03.gif",
            "weather": "阵雨",
            "state": "低温",
            "degree": "23℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        }
    },
    "di6tian": {
        "one": {
            "riqi": "29日",
            "week": "星期日",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d01.gif",
            "weather": "多云",
            "state": "高温",
            "degree": "28℃",
            "fengxiang": "东风",
            "fengli": "3-4级"
        },
        "two": {
            "DayEvning": "夜间",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/n03.gif",
            "weather": "阵雨",
            "state": "低温",
            "degree": "22℃",
            "fengxiang": "东南风",
            "fengli": "3-4级"
        }
    },
    "di7tian": {
        "one": {
            "riqi": "30日",
            "week": "星期一",
            "DayEvning": "白天",
            "src": "http://www.weather.com.cn//m2/i/icon_weather/29x20/d03.gif",
            "weather": "阵雨",
            "state": "高温",
            "degree": "27℃",
            "fengxiang": "东南风",
            "fengli": "3-4级"
        }
    }
}

 

 
 
posted @ 2014-06-24 11:25  eyye的眼睛  阅读(12003)  评论(15编辑  收藏  举报