htmlunit獲取網頁指定元素

package com;

import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.DomElement;
import com.gargoylesoftware.htmlunit.html.DomNodeList;
import com.gargoylesoftware.htmlunit.html.HtmlElement;
import com.gargoylesoftware.htmlunit.html.HtmlListItem;
import com.gargoylesoftware.htmlunit.html.HtmlPage;

public class Test {

	public static void main(String[] args) {
		WebClient webClient=new WebClient(BrowserVersion.FIREFOX_60);  //實例化客戶端
		try {
			HtmlPage page=webClient.getPage("http://www.xinhuanet.com/ent/dy.htm");//解析獲取頁面
			
			//查找指定id的元素
			HtmlElement ul=page.getHtmlElementById("showData0");
			System.out.println(ul.asXml());
			System.out.println("---------------------");
			System.out.println("==================================");
			
			//根據tag名稱查詢所有元素
			DomNodeList<DomElement>  aList=page.getElementsByTagName("a");
			for(DomElement dom:aList) {
				System.out.println(dom.asXml());
			}
			System.out.println("==================================");
			System.out.println("==================================");
			
			//xpath方式獲取指定元素
			HtmlListItem item= (HtmlListItem)page.getByXPath("//ul[@id='showData0']/li[1]").get(0);
			System.out.println(item.asXml());
		
		}catch(Exception e) {
			e.printStackTrace();
		}
		
		finally {
			webClient.close();//關閉客戶端,釋放內存
		}
		
	}
}

運行結果:

[ERROR] 2019-01-02 22:03:14,094 method:com.gargoylesoftware.htmlunit.javascript.StrictErrorReporter.runtimeError(StrictErrorReporter.java:82)
runtimeError: message=[An invalid or illegal selector was specified (selector: 'iframe:visible' error: Invalid selector: iframe:visible).] sourceName=[http://www.news.cn/static/jq.js] line=[3] lineSource=[null] lineOffset=[0]
[ERROR] 2019-01-02 22:03:14,320 method:com.gargoylesoftware.htmlunit.javascript.StrictErrorReporter.runtimeError(StrictErrorReporter.java:82)
runtimeError: message=[An invalid or illegal selector was specified (selector: '.lazyload:visible' error: Invalid selector: *.lazyload:visible).] sourceName=[http://www.news.cn/static/jq.js] line=[3] lineSource=[null] lineOffset=[0]
<ul id="showData0" class="dataList">
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm" target="_blank">
        《沉默的雪》發佈終極海報
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123937699_1546406807795_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123937699_1546406807795_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'《沉默的雪》發佈終極海報',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 13:27:09
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936379.htm" target="_blank">
        《飛馳人生》全新預告
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936379.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123936892_1546396816566_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123936892_1546396816566_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'《飛馳人生》全新預告',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123936379.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 10:40:38
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936210.htm" target="_blank">
        史詩級長鏡頭VS現象級營銷,誰贏?
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936210.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123936210_1546393488329_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123936210_1546393488329_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      “首部預售即破億元的文藝片”,僅此一條,《地球最後的夜晚》就足夠在中國電影市場形成話題。更何況,這部號召大傢俱有儀式感地“一吻跨年”的影片,真真切切劈開了熱愛與痛罵的陣營。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'史詩級長鏡頭VS現象級營銷,誰贏?',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123936210.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 09:46:25
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935506.htm" target="_blank">
        電影《戰鬥民族養成記》新年海報曝光
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935506.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123935506_1546390621436_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123935506_1546390621436_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      即將於1月18日全國上映的愛情喜劇電影《戰鬥民族養成記》發佈元旦特別版海報。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'電影《戰鬥民族養成記》新年海報曝光',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123935506.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 08:58:13
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934879.htm" target="_blank">
        動物冒險片《一條狗的回家路》中國將映
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934879.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934879_1546388994994_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934879_1546388994994_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      2017年3月,美國電影《一條狗的使命》在中國上映;近2年後,其姊妹篇《一條狗的回家路》將於1月18日再次登陸中國。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'動物冒險片《一條狗的回家路》中國將映',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123934879.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 08:30:09
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935012.htm" target="_blank">
        《廉政風雲》預告獲觀衆“正能量”好評
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935012.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123935012_1546388831333_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123935012_1546388831333_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      《廉政風雲》年前發佈了“金牌出擊”版預告。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'《廉政風雲》預告獲觀衆“正能量”好評',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123935012.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 08:28:43
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934963.htm" target="_blank">
        《22年後的自白》曝終極海報
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934963.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934963_1546388523103_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934963_1546388523103_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      由藤原龍也、伊藤英明主演,夏帆、野村周平、石橋杏奈、龍星涼、仲村亨、早乙女太一共同出演的《22年後的自白》,即將於1月11日內地上映。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'《22年後的自白》曝終極海報',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123934963.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 08:22:54
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934880.htm" target="_blank">
        2018年中國電影票房首次突破600億元
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934880.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934880_1546388430912_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934880_1546388430912_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      國家電影局2018年12月31日晚發佈的數據顯示,當年全國電影總票房爲609.76億元,同比增長9.06%,城市院線觀影人次爲17.16億,同比增長5.93%。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'2018年中國電影票房首次突破600億元',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123934880.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 08:20:45
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934830.htm" target="_blank">
        《四個春天》 因爲慈悲 所以動人
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934830.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934830_1546387551662_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934830_1546387551662_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      於是,陸慶屹決定用影像記錄,爲了搖鏡頭,陸慶屹又買了一個三腳架,1500元,就是他“導演首秀”的全部投資。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'《四個春天》 因爲慈悲 所以動人',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123934830.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2019-01-02 08:06:11
      </span>
    </div>
  </li>
  <li class="clearfix">
    <h3>
      <a href="http://www.xinhuanet.com/ent/2018-12/31/c_1123931549.htm" target="_blank">
        電影 不僅僅是娛樂,跟你我都有關
      </a>
    </h3>
    <i class="imgs">
      <a href="http://www.xinhuanet.com/ent/2018-12/31/c_1123931549.htm" targrt="_blank">
        <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123931549_1546245046261_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123931549_1546245046261_title0h.jpg" style="display: block;"/>
      </a>
    </i>
    <p class="summary">
      12月30日,中國電影票房終於達到600億的水平,創造了票房新紀錄。今年一個特別大的變化就是現實主義電影的重新崛起,現實主義題材的電影不論從數量還是票房表現上較之過去都有了不少提升。
    </p>
    <div class="info">
      <div class="bdsharebuttonbox clearfix">
        <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'電影 不僅僅是娛樂,跟你我都有關',url:'http://www.xinhuanet.com/ent/2018-12/31/c_1123931549.htm',pic:'圖片路徑'">
          <span class="bds_more">
            分享
          </span>
        </span>
      </div>
      <span class="time">
        2018-12-31 16:31:25
      </span>
    </div>
  </li>
  <li id="dataMoreBtn" class="moreBtn">
    <i class="icon" style="display: none;">
    </i>
    <span class="text">
      顯示更多
    </span>
  </li>
</ul>

---------------------
==================================
<a href="#" class="bds_mshare mshare">
  一鍵分享
</a>

<a href="#" class="bds_qzone qqkj">
  QQ空間
</a>

<a href="#" class="bds_tsina xlwb">
  新浪微博
</a>

<a href="#" class="bds_bdysc bdysc">
  百度雲收藏
</a>

<a href="#" class="bds_renren rrw">
  人人網
</a>

<a href="#" class="bds_tqq txwb">
  騰訊微博
</a>

<a href="#" class="bds_bdxc bdxc">
  百度相冊
</a>

<a href="#" class="bds_kaixin001 kxw">
  開心網
</a>

<a href="#" class="bds_tqf txpy">
  騰訊朋友
</a>

<a href="#" class="bds_tieba bdtb">
  百度貼吧
</a>

<a href="#" class="bds_douban db">
  豆瓣網
</a>

<a href="#" class="bds_tsohu shwb">
  搜狐微博
</a>

<a href="#" class="bds_bdhome bdhome">
  百度新首頁
</a>

<a href="#" class="bds_sqq sqq">
  QQ好友
</a>

<a href="#" class="bds_thx thx">
  和訊微博
</a>

<a href="#" class="bds_more">
  更多...
</a>

<a href="#" class="goWebsite">
  百度分享
</a>

<a href="http://www.news.cn/" target="_blank">
  新華網首頁
</a>

<a href="http://www.news.cn/politics/" target="_blank">
  時政
</a>

<a href="http://www.news.cn/world/" target="_blank">
  國際
</a>

<a href="http://www.news.cn/fortune/" target="_blank">
  財經
</a>

<a href="http://www.news.cn/politics/leaders/" target="_blank">
  高層
</a>

<a href="http://www.news.cn/politics/xhll.htm" target="_blank">
  理論
</a>

<a href="http://forum.home.news.cn/index.jsp" target="_blank">
  論壇
</a>

<a href="http://sike.news.cn/" target="_blank">
  思客
</a>

<a href="http://www.news.cn/info/" target="_blank">
  信息化
</a>

<a href="http://www.news.cn/house/" target="_blank">
  房產
</a>

<a href="http://www.news.cn/mil/" target="_blank">
  軍事
</a>

<a href="http://www.news.cn/gangao/" target="_blank">
  港澳
</a>

<a href="http://www.news.cn/tw/" target="_blank">
  臺灣
</a>

<a href="http://www.news.cn/photo/index.htm" target="_blank">
  圖片
</a>

<a href="http://www.news.cn/video/index.htm" target="_blank">
  視頻
</a>

<a href="http://ent.news.cn/" target="_blank">
  娛樂
</a>

<a href="http://www.news.cn/fashion/" target="_blank">
  時尚
</a>

<a href="http://www.news.cn/sports/" target="_blank">
  體育
</a>

<a href="http://www.news.cn/auto/" target="_blank">
  汽車
</a>

<a href="http://www.news.cn/tech/" target="_blank">
  科技
</a>

<a href="http://www.news.cn/food/" target="_blank">
  食品
</a>

<a href="http://app.www.gov.cn/download/Chinese.html" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png"/>
</a>

<a href="http://paper.news.cn" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg"/>
</a>

<a href="http://app.www.gov.cn/download/Chinese.html" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png"/>
</a>

<a href="http://www.xinhuatone.com/xhskhd.jsp" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111537/1115375526_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111537/1115375526_title0h.jpg"/>
</a>

<a href="http://www.xinhuanet.com/politics/2018-12/25/c_1123901854.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112390/1123903484_1545734883964_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112390/1123903484_1545734883964_title0h.png"/>
</a>

<a href="http://www.gongwuxing.com/login/loginnew" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112267/1122673921_1523523069690_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/112267/1122673921_1523523069690_title0h.jpg"/>
</a>

<a href="http://www.ccdi.gov.cn/client" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111537/1115375296_1523152964710_title0h.png" data-original="http://www.xinhuanet.com/titlepic/111537/1115375296_1523152964710_title0h.png"/>
</a>

<a href="http://paper.news.cn" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg"/>
</a>

<a href="http://app.www.gov.cn/download/Chinese.html" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png"/>
</a>

<a href="http://paper.news.cn" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/politics/xjpsxkj/index.html">
  <img class="" src="http://www.xinhuanet.com/titlepic/112381/1123812531_1544003605107_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112381/1123812531_1544003605107_title0h.png"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/gongyi/zt/2018wspx/index.htm">
  <img class="lazyload" src="http://www.xinhuanet.com/titlepic/111850/1118505700_1543540957050_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111850/1118505700_1543540957050_title0h.jpg"/>
</a>

<a target="_blank" href="http://silkroad.news.cn">
  <img class="lazyload" src="http://www.xinhuanet.com/titlepic/111872/1118727062_1461573070496_title0h.gif" data-original="http://www.xinhuanet.com/titlepic/111872/1118727062_1461573070496_title0h.gif"/>
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/politics/">
  新華時政
</a>

<a href="http://www.xinhuanet.com/politics/2019-01/02/c_1123934592.htm" target="_blank">
  2019,八字方針如何落到實處
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/world/index.htm">
  新華國際
</a>

<a href="http://www.xinhuanet.com/world/2019-01/01/c_1123934472.htm" target="_blank">
  多國領導人發表新年賀詞
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/fortune/">
  新華財經
</a>

<a href="http://news.cn/fortune/lhzt/18/index.htm" target="_blank">
  落實“六穩”新部署
</a>

<a class="titItem" target="_blank" href="http://forum.home.news.cn/index.jsp">
  發展論壇
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/video/datanews/qb.htm">
  數據新聞
</a>

<a href="http://www.xinhuanet.com/video/sjxw/2018-12/24/c_1210022818.htm" target="_blank">
  春運即將開始,你買到票了嗎?
</a>

<a class="titItem" target="_blank" href="http://sike.news.cn/">
  新華思客
</a>

<a href="http://sike.news.cn/statics/sike/posts/2019/01/219540383.html" target="_blank">
  陳春花:自我成長需突破三個障礙
</a>

<a class="titItem" target="_blank" href="http://www.xinhuanet.com/xuanzhi/zt/xzyxl/index.html">
  炫知·傳播力
</a>

<a class="titItem" target="_blank" href="http://cx.xinhuanet.com/index.htm">
  新華雙創
</a>

<a href="http://cx.xinhuanet.com/2019-01/02/c_137714115.htm" target="_blank">
  二〇一八:創新中國加速度
</a>

<a href="index.htm" class="fl" target="_blank">
  新華娛樂
</a>

<a href="index.htm" target="_blank" class="">
  娛樂首頁
</a>

<a href="zx.htm" target="_blank">
  資訊
</a>

<a href="mx.htm" target="_blank">
  明星
</a>

<a href="dy.htm" target="_blank" class="on">
  電影
</a>

<a href="ds.htm" target="_blank">
  電視
</a>

<a href="game.htm" target="_blank">
  遊戲
</a>

<a href="yy.htm" target="_blank">
  音樂
</a>

<a href="mt.htm" target="_blank">
  美圖
</a>

<a href="zt.htm" target="_blank">
  專題
</a>

<a href="sp.htm" target="_blank">
  視頻
</a>

<a href="pl.htm" target="_blank" style=" margin:0">
  娛論場
</a>

<a class="logo" href="http://www.xinhuanet.com">
</a>

<a href="http://www.news.cn/" title="">
   首頁
</a>

<a href="http://www.news.cn/politics/" title="">
   時政
</a>

<a href="http://www.news.cn/world/index.htm" title="">
   國際
</a>

<a href="http://www.news.cn/fortune/" title="">
   財經
</a>

<a href="http://ent.news.cn/" title="">
   娛樂
</a>

<a href="http://www.news.cn/sports/" title="">
   體育
</a>

<a href="http://www.news.cn/renshi/index.htm" title="">
   人事
</a>

<a href="http://education.news.cn/" title="">
   教育
</a>

<a href="http://www.news.cn/fashion/" title="">
   時尚
</a>

<a href="http://sike.news.cn/" title="">
   思客
</a>

<a href="http://www.news.cn/local/index.htm" title="">
   地方
</a>

<a href="http://www.news.cn/legal/index.htm" title="">
   法治
</a>

<a href="http://www.news.cn/gangao/index.htm" title="">
   港澳
</a>

<a href="http://www.news.cn/tw/index.htm" title="">
   臺灣
</a>

<a href="http://www.news.cn/overseas/index.htm" title="">
   華人
</a>

<a href="http://www.news.cn/auto/index.htm" title="">
   汽車
</a>

<a href="http://www.news.cn/tech/index.htm" title="">
   科技
</a>

<a href="http://www.news.cn/energy/index.htm" title="">
   能源
</a>

<a href="http://forum.home.news.cn/index.jsp" title="">
   論壇
</a>

<a href="http://www.news.cn/comments/index.htm" title="">
   網評
</a>

<a href="http://www.news.cn/photo/index.htm" title="">
   圖片
</a>

<a href="http://www.news.cn/video/index.htm" title="">
   視頻
</a>

<a href="http://blog.home.news.cn/" title="">
   博客
</a>

<a href="http://www.news.cn/food/index.htm" title="">
   食品
</a>

<a href="http://travel.news.cn/" title="">
   旅遊
</a>

<a href="http://www.news.cn/health/" title="">
   健康
</a>

<a href="http://www.news.cn/info/index.htm" title="">
   信息化
</a>

<a href="http://www.news.cn/video/datanews/qb.htm" title="">
   數據
</a>

<a href="http://xuan.news.cn/" title="">
   炫空間
</a>

<a href="http://www.news.cn/gongyi/index.htm" title="">
   公益
</a>

<a href="http://www.news.cn/yuqing/index.htm" title="">
   輿情
</a>

<a href="http://www.news.cn/video/dxw/index.htm" title="">
   動新聞
</a>

<a href="http://www.news.cn/video/xinhuaradio/index.htm" title="">
  新華廣播
</a>

<a href="http://www.news.cn/2015wlds/index.htm" title="">
  新華電視中文
</a>

<a href="http://www.news.cn/2015wlds/enindex.htm" title="">
  新華電視英文
</a>

<a href="http://www.xinhuanet.com/?f=pad" title="">
  返回PC
</a>

<a href="index.htm" class="on">
  首 頁
</a>

<a href="mt.htm">
  美 圖
</a>

<a href="mx.htm">
  明 星
</a>

<a href="dy.htm">
  電 影
</a>

<a href="ds.htm">
  電 視
</a>

<a href="game.htm">
  遊 戲
</a>

<a href="sp.htm">
  視 頻
</a>

<a href="zt.htm">
  專 題
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm" target="_blank">
  《沉默的雪》發佈終極海報
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123937699_1546406807795_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123937699_1546406807795_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936379.htm" target="_blank">
  《飛馳人生》全新預告
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936379.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123936892_1546396816566_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123936892_1546396816566_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936210.htm" target="_blank">
  史詩級長鏡頭VS現象級營銷,誰贏?
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936210.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123936210_1546393488329_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123936210_1546393488329_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935506.htm" target="_blank">
  電影《戰鬥民族養成記》新年海報曝光
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935506.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123935506_1546390621436_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123935506_1546390621436_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934879.htm" target="_blank">
  動物冒險片《一條狗的回家路》中國將映
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934879.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934879_1546388994994_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934879_1546388994994_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935012.htm" target="_blank">
  《廉政風雲》預告獲觀衆“正能量”好評
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123935012.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123935012_1546388831333_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123935012_1546388831333_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934963.htm" target="_blank">
  《22年後的自白》曝終極海報
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934963.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934963_1546388523103_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934963_1546388523103_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934880.htm" target="_blank">
  2018年中國電影票房首次突破600億元
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934880.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934880_1546388430912_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934880_1546388430912_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934830.htm" target="_blank">
  《四個春天》 因爲慈悲 所以動人
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934830.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123934830_1546387551662_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123934830_1546387551662_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/31/c_1123931549.htm" target="_blank">
  電影 不僅僅是娛樂,跟你我都有關
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/31/c_1123931549.htm" targrt="_blank">
  <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123931549_1546245046261_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123931549_1546245046261_title0h.jpg" style="display: block;"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934825.htm" target="_blank">
  流量造假只會透支信譽
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123934825.htm">
  <img src="titlepic/112393/1123934855_1546387890923_title0h.jpg" width="322" height="140" border="0" alt="流量造假只會透支信譽"/>
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/28/c_1123917282.htm" target="_blank">
  品質決定影響 2018新華文娛年度報告
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/28/c_1123916397.htm" target="_blank">
  蹭狗年熱點,“狗片”大多成“炮灰”
</a>

<a href="fyt.htm" target="_blank">
  放映廳
</a>

<a class="arrow arrow-left domPC" href="#">
</a>

<a class="arrow arrow-right domPC" href="#">
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/25/c_1123900085.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112390/1123900085_1545701834479_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112390/1123900085_1545701834479_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/25/c_1123900085.htm">
  《大江大河》田雷、宋家騰分享創作心得
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/28/c_1123916271.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112391/1123916271_1546394157963_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112391/1123916271_1546394157963_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/28/c_1123916271.htm">
  行走的力量分享展 陳坤暢聊情緒話題
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/27/c_1123911965.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112391/1123911965_1546071968024_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112391/1123911965_1546071968024_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/27/c_1123911965.htm">
  蔡依林發片落淚 主打歌全是個人經歷
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/26/c_1123904432.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112390/1123904432_1545783065109_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112390/1123904432_1545783065109_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/26/c_1123904432.htm">
  《知否》講述封建禮教下女性奮鬥傳奇
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/25/c_1123901994.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112390/1123901994_1545724161267_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112390/1123901994_1545724161267_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/25/c_1123901994.htm">
  《家和萬事驚》定檔1月18日
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/25/c_1123900085.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112390/1123900085_1545701834479_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112390/1123900085_1545701834479_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/25/c_1123900085.htm">
  《大江大河》田雷、宋家騰分享創作心得
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/28/c_1123916271.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/ent/titlepic/112391/1123916271_1546394157963_title0h.jpg" data-original="http://www.xinhuanet.com/ent/titlepic/112391/1123916271_1546394157963_title0h.jpg"/>
  <em class="playBtn"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/ent/2018-12/28/c_1123916271.htm">
  行走的力量分享展 陳坤暢聊情緒話題
</a>

<a target="_blank" href="yxg.htm">
  印象館
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/27/c_1123912816.htm" target="_blank">
  井柏然
</a>

<a href="mt.htm">
  <img src="http://www.xinhuanet.com/ent/20160429/img/xxgTitle.jpg"/>
</a>

<a href="http://ent.news.cn/2016-07/13/c_129141828.htm">
  <img src="titlepic/111921/1119210714_1468376402425_title0h.jpg" width="305" height="160" border="0" alt="林允"/>
</a>

<a href="http://www.xinhuanet.com/ent/2018-03/22/c_1122574240.htm">
  <img src="titlepic/112257/1122574240_1521684755015_title0h.jpg" width="150" height="210" border="0" alt="闞清子時尚大片曝光 慵懶復古時尚感十足"/>
</a>

<a href="http://www.xinhuanet.com/ent/2018-02/05/c_1122368498.htm">
  <img src="titlepic/112236/1122368498_1517794215620_title0h.jpg" width="150" height="210" border="0" alt="佟麗婭全新寫真剛柔並濟 多套look顯時尚魅力"/>
</a>

<a href="http://ent.news.cn/2016-07/12/c_129138074.htm">
  <img src="titlepic/111920/1119204129_1468290541451_title0h.jpg" width="305" height="160" border="0" alt="倪妮"/>
</a>

<a href="zt.htm" target="_blank">
  <img src="http://www.xinhuanet.com/ent/20160429/img/rdztTitle.jpg"/>
</a>

<a href="http://www.xinhuanet.com/ent/people/2018/1a.htm" target="_blank">
  著名作家金庸逝世
</a>

<a href="http://www.xinhuanet.com/ent/people/2018/1a.htm" target="_blank">
  <img src="titlepic/112363/1123639984_1540953720922_title0h.jpg" width="330" height="160" alt="著名作家金庸逝世"/>
</a>

<a href="http://www.xinhuanet.com/ent/2018zgysyhcyfzdh/index.htm" target="_blank">
  2018中國影視文化產業發展大會
</a>

<a href="http://www.xinhuanet.com/ent/2018zgysyhcyfzdh/index.htm" target="_blank">
  <img src="titlepic/112359/1123595641_1540366592231_title0h.png" width="330" height="160" alt="2018中國影視文化產業發展大會"/>
</a>

<a href="http://www.xinhuanet.com/ent/2018wns/index.htm" target="_blank">
  第75屆威尼斯國際電影節
</a>

<a href="http://www.xinhuanet.com/ent/2018wns/index.htm" target="_blank">
  <img src="titlepic/112335/1123353869_1535608641334_title0h.jpg" width="330" height="160" alt="第75屆威尼斯國際電影節"/>
</a>

<a href="http://www.xinhuanet.com/ent/xmyjh/index.htm" target="_blank">
  2018新民韻計劃
</a>

<a href="http://www.xinhuanet.com/ent/xmyjh/index.htm" target="_blank">
  <img src="titlepic/112306/1123067524_1530520728810_title0h.png" width="330" height="160" alt="2018新民韻計劃"/>
</a>

<a href="sp.htm">
  <img src="http://www.newsimg.cn/ent/spTitle.jpg"/>
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936380.htm">
  《奎迪:英雄再起》主創送達貼心問候
</a>

<a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123936379.htm">
  《飛馳人生》全新預告 沈騰報班學致富
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/29/c_1123924281.htm">
  《八個女人一臺戲》致敬梅豔芳
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/29/c_1123924182.htm">
  《養家之人》發佈同名主題曲
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/27/c_1123910984.htm">
  《瘋狂的外星人》曝“綁架版”預告
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/27/c_1123910772.htm">
  《神探蒲松齡》發佈“鍾情你”特輯
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/27/c_1123914122.htm">
  《大冰小將》曝光先導片
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/26/c_1123906596.htm">
  《天氣預爆》“超神時刻”特輯
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/25/c_1123901313.htm">
  《奎迪:英雄再起》解密拳臺恩怨
</a>

<a href="http://www.xinhuanet.com/ent/2018-12/24/c_1123896039.htm">
  《地球最後的夜晚》終極預告
</a>

<a href="javascript:void(0)" class="domMobile back" id="backTop">
  返回頂部
</a>

<a href="http://paper.news.cn" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg"/>
</a>

<a href="http://app.www.gov.cn/download/Chinese.html" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png"/>
</a>

<a href="http://www.xinhuatone.com/xhskhd.jsp" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111537/1115375526_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111537/1115375526_title0h.jpg"/>
</a>

<a href="http://www.xinhuanet.com/politics/2018-12/25/c_1123901854.htm" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112390/1123903484_1545734883964_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112390/1123903484_1545734883964_title0h.png"/>
</a>

<a href="http://www.gongwuxing.com/login/loginnew" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112267/1122673921_1523523069690_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/112267/1122673921_1523523069690_title0h.jpg"/>
</a>

<a href="http://www.ccdi.gov.cn/client" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111537/1115375296_1523152964710_title0h.png" data-original="http://www.xinhuanet.com/titlepic/111537/1115375296_1523152964710_title0h.png"/>
</a>

<a href="http://paper.news.cn" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111982/1119826953_1528445367540_title0h.jpg"/>
</a>

<a href="http://app.www.gov.cn/download/Chinese.html" target="_blank">
  <img class="" src="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112038/1120386317_1485404790780_title0h.png"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/politics/xjpsxkj/index.html">
  <img class="" src="http://www.xinhuanet.com/titlepic/112381/1123812531_1544003605107_title0h.png" data-original="http://www.xinhuanet.com/titlepic/112381/1123812531_1544003605107_title0h.png"/>
</a>

<a target="_blank" href="http://www.xinhuanet.com/gongyi/zt/2018wspx/index.htm">
  <img class="lazyload" src="http://www.xinhuanet.com/titlepic/111850/1118505700_1543540957050_title0h.jpg" data-original="http://www.xinhuanet.com/titlepic/111850/1118505700_1543540957050_title0h.jpg"/>
</a>

<a target="_blank" href="http://silkroad.news.cn">
  <img class="lazyload" src="http://www.xinhuanet.com/titlepic/111872/1118727062_1461573070496_title0h.gif" data-original="http://www.xinhuanet.com/titlepic/111872/1118727062_1461573070496_title0h.gif"/>
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/politics/">
  新華時政
</a>

<a href="http://www.xinhuanet.com/politics/2019-01/02/c_1123934592.htm" target="_blank">
  2019,八字方針如何落到實處
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/world/index.htm">
  新華國際
</a>

<a href="http://www.xinhuanet.com/world/2019-01/01/c_1123934472.htm" target="_blank">
  多國領導人發表新年賀詞
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/fortune/">
  新華財經
</a>

<a href="http://news.cn/fortune/lhzt/18/index.htm" target="_blank">
  落實“六穩”新部署
</a>

<a class="titItem" target="_blank" href="http://forum.home.news.cn/index.jsp">
  發展論壇
</a>

<a class="titItem" target="_blank" href="http://www.news.cn/video/datanews/qb.htm">
  數據新聞
</a>

<a href="http://www.xinhuanet.com/video/sjxw/2018-12/24/c_1210022818.htm" target="_blank">
  春運即將開始,你買到票了嗎?
</a>

<a class="titItem" target="_blank" href="http://sike.news.cn/">
  新華思客
</a>

<a href="http://sike.news.cn/statics/sike/posts/2019/01/219540383.html" target="_blank">
  陳春花:自我成長需突破三個障礙
</a>

<a class="titItem" target="_blank" href="http://www.xinhuanet.com/xuanzhi/zt/xzyxl/index.html">
  炫知·傳播力
</a>

<a class="titItem" target="_blank" href="http://cx.xinhuanet.com/index.htm">
  新華雙創
</a>

<a href="http://cx.xinhuanet.com/2019-01/02/c_137714115.htm" target="_blank">
  二〇一八:創新中國加速度
</a>

==================================
==================================
<li class="clearfix">
  <h3>
    <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm" target="_blank">
      《沉默的雪》發佈終極海報
    </a>
  </h3>
  <i class="imgs">
    <a href="http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm" targrt="_blank">
      <img class="lazyload" src="http://ent.news.cn/titlepic/112393/1123937699_1546406807795_title0h.jpg" data-original="http://ent.news.cn/titlepic/112393/1123937699_1546406807795_title0h.jpg" style="display: block;"/>
    </a>
  </i>
  <p class="summary">
  </p>
  <div class="info">
    <div class="bdsharebuttonbox clearfix">
      <span id="bdshare" class="bdshare_t bds_tools get-codes-bdshare feed-card-share" data="text:'《沉默的雪》發佈終極海報',url:'http://www.xinhuanet.com/ent/2019-01/02/c_1123937681.htm',pic:'圖片路徑'">
        <span class="bds_more">
          分享
        </span>
      </span>
    </div>
    <span class="time">
      2019-01-02 13:27:09
    </span>
  </div>
</li>

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章