5185.info怎么javbus.info上不去去

From Wikipedia, the free encyclopedia
XSLT (Extensible Stylesheet Language Transformations) is a language for
documents into other XML documents, or other formats such as
or , which may subsequently be converted to other formats, such as ,
and . XSLT 1.0 is widely supported in modern web browsers .
The original doc rather, a new document is created based on the content of an existing one. Typically, input documents are XML files, but anything from which the processor can build an
can be used, such as
tables or .
Although XSLT is designed as a special-purpose language for XML transformation, the language is , making it theoretically capable of arbitrary computations.
XSLT is influenced by , and by text-based pattern matching languages like
and . Its most direct predecessor is , which did for
what XSLT does for XML.
XSLT 1.0: XSLT was part of the
(XSL) development effort of , a project that also produced
and . Some members of the standards committee that developed XSLT, including , the editor, had previously worked on DSSSL. XSLT 1.0 was published as a
in November 1999.
XSLT 2.0: after an abortive attempt to create a version 1.1 in 2001, the XSL working group joined forces with the
working group to create , with a richer data model and type system based on . Building on this is XSLT 2.0, developed under the editorship of , which reached recommendation status in January 2007. As of 2010, however, XSLT 1.0 is still widely used, since 2.0 is not supported natively in
or for environments like .
XSLT 3.0: became a W3C Recommendation on 8 June 2017. The main new features are:
: in previous versions the entire input document had to be read into memory before it could be processed, and output could not be written until processing had finished (although Saxon does have a streaming extension). The working draft allows
which will be useful for processing documents too large to fit in memory, or when transformations are chained in .
Improvements to the modularity of large stylesheets.
Improved handling of dynamic errors with, for example, an xsl:try instruction.
Functions can now be arguments to other (higher-order) functions.
Diagram of the basic elements and process flow of Extensible Stylesheet Language Transformations.
The XSLT processor takes one or more XML source documents, plus one or more XSLT stylesheets, and processes them to produce an output document. In contrast to widely implemented
programming languages like , XSLT is . The basic processing paradigm is pattern matching. Rather than listing an imperative sequence of actions to perform in a stateful environment, template rules only define how to handle a node matching a particular XPath-like pattern, if the processor should happen to encounter one, and the contents of the templates effectively comprise
that directly represent their evaluated form: the result tree, which is the basis of the processor's output.
The processor follows a fixed algorithm. First, assuming a stylesheet has already been read and prepared, the processor builds a source
from the input XML document. It then processes the source tree's root node, finds the best-matching template for that node in the stylesheet, and evaluates the template's contents. Instructions in each template generally direct the processor to either create nodes in the result tree, or to process more nodes in the source tree in the same way as the root node. Output derives from the result tree.
Altova RaptorXML Server: cross-platform engine that supports XSLT 1.0 and 2.0, most of XPath 3.0, and some features from the XSLT 3.0 also XQuery. Allows command line operations and interfaces to COM, , and
and also includes a built-in HTTP server.
Exselt: A streaming XSLT 3.0 processor which runs on the
written in . Fully supports the XSLT 3.0 Draft, XPath 3.0 Recommendation and XDM 3.0 Recommendation standards.
released under the
that can be reused in commercial applications. It is based on
and implemented in
for speed and portability. It supports XSLT 1.0 and
extensions.
It can be used at the command line via xsltproc which is included in
and many , and can be used on
layout engines, used for example in the
web browsers respectively, uses the libxslt library to do XSL transformations.
exist for , , , , , , and .
and .NET. MSXML includes an XSLT 1.0 processor. From MSXML 4.0 it includes the command line utility msxsl.exe.
: an XSLT 3.0 and XQuery 3.1 processor with
versions for stand-alone operation and for ,
QuiXSLT: an XSLT 3.0 processor doing streaming implemented in
by Innovimax and .
: an open source XSLT 1.0 processor from the
available stand-alone and for Java and C++.
Web browsers: Safari, Chrome, Firefox, Opera and Internet Explorer all support XSLT 1.0. None support XSLT 2.0 natively, although the third party products like Saxon-CE and Frameless can provide this functionality. Browsers can perform on-the-fly transformations of XML files and display the transformation output in the browser window. This is done either by embedding the XSL in the XML document or by referencing a file containing XSL instructions from the XML document. The latter may not work with Chrome because of its security model.
is "a set of command line utilities (tools) which can be used to transform, query, validate, and edit XML documents". It can "apply XSLT stylesheets to XML documents" and does not require Java. It uses libxslt and supports XSLT 1.0.
Xuriella and Plexippus-xpath are XSLT 1.0 processors written in .
Most early XSLT processors were interpreters. More recently, code generation is increasingly common, using portable intermediate languages (such as
or .NET ) as the target. However, even the interpretive products generally offer separate analysis and execution phases, allowing an optimized expression tree to be created in memory and reused to perform multiple transformations. This gives substantial performance benefits in online publishing applications, where the same transformation is applied many times per second to different source documents. This separation is reflected in the design of XSLT processing APIs (such as ).
Early XSLT processors had very few optimizations. Stylesheet documents were read into
and the processor would act on them directly.
engines were also not optimized. Increasingly, however, XSLT processors use optimization techniques found in functional programming languages and database query languages, such as static rewriting of an expression tree (e.g., to move calculations out of loops), and lazy pipelined evaluation to reduce the memory footprint of intermediate results (and allow "early exit" when the processor can evaluate an expression such as following-sibling::*[1] without a complete evaluation of all subexpressions). Many processors also use tree representations that are significantly more efficient (in both space and time) than general-purpose DOM implementations.
In June 2014, Debbie Lockett and
introduced an open-source benchmarking framework for XSLT processors called XT-Speedo.
to identify subsets of the source document tree and perform calculations. XPath also provides a range of , which XSLT itself further augments.
XSLT 1.0 uses XPath 1.0, while XSLT 2.0 uses XPath 2.0. XSLT 3.0 will work with either XPath 3.0 or 3.1. In the case of 1.0 and 2.0, the XSLT and XPath specifications were published on the same date. With 3.0, however, they were no XPath 3.0 became a Recommendation in April 2014, followed by XPath 3.1 in February 2017; XSLT 3.0 followed in June 2017.
XSLT functionalities overlap with those of , which was initially conceived as a query language for large collections of XML documents.
The XSLT 2.0 and XQuery 1.0 standards were developed by separate working groups within , working together to ensure a common approach where appropriate. They share the same data model, type system, and function library, and both include
2.0 as a sublanguage.
The two languages, however, are rooted in different traditions and serve the needs of different communities. XSLT was primarily conceived as a stylesheet language whose primary goal was to render XML for the human reader on screen, on
(as ), or on paper. XQuery was primarily conceived as a
in the tradition of .
Because the two languages originate in different communities, XSLT is stronger in its handling of narrative documents with more flexible structure, while XQuery is stronger in its data handling, for example when performing relational joins.[]
The &output& element can optionally take the attribute media-type, which allows one to set the
(or MIME type) for the resulting output, for example: &xsl:output output="xml" media-type="application/xml"/&. The XSLT 1.0 recommendation recommends the more general attribute types text/xml and application/xml since for a long time there was no registered media type for XSLT. During this time text/xsl became the de facto standard. In XSLT 1.0 it was not specified how the media-type values should be used.
With the release of the XSLT 2.0, the W3C recommended the registration of the MIME media type application/xslt+xml and it was later registered with the .
Pre-1.0 working drafts of XSLT used text/xsl in their embedding examples, and this type was implemented and continues to be promoted by Microsoft in Internet Explorer and MSXML. It is also widely recognized in the xml-stylesheet processing instruction by other browsers. In practice, therefore, users wanting to control transformation in the browser using this processing instruction are obliged to use this unregistered media type.
These examples use the following incoming XML document
&?xml version="1.0" ?&
&person username="JS1"&
&name&John&/name&
&family-name&Smith&/family-name&
&person username="MI1"&
&name&Morka&/name&
&family-name&Ismincius&/family-name&
&/persons&
This XSLT stylesheet provides templates to transform the XML document:
&?xml version="1.0" encoding="UTF-8"?&
&xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&
&xsl:output method="xml" indent="yes"/&
&xsl:template match="/persons"&
&xsl:apply-templates select="person"/&
&/xsl:template&
&xsl:template match="person"&
&name username="{@username}"&
&xsl:value-of select="name" /&
&/xsl:template&
&/xsl:stylesheet&
Its evaluation results in a new XML document, having another structure:
&?xml version="1.0" encoding="UTF-8"?&
&name username="JS1"&John&/name&
&name username="MI1"&Morka&/name&
Processing the following example XSLT file
&?xml version="1.0" encoding="UTF-8"?&
&xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"&
&xsl:output method="xml" indent="yes" encoding="UTF-8"/&
&xsl:template match="/persons"&
&head& &title&Testing XML Example&/title& &/head&
&h1&Persons&/h1&
&xsl:apply-templates select="person"&
&xsl:sort select="family-name" /&
&/xsl:apply-templates&
&/xsl:template&
&xsl:template match="person"&
&xsl:value-of select="family-name"/&&xsl:text&, &/xsl:text&&xsl:value-of select="name"/&
&/xsl:template&
&/xsl:stylesheet&
with the XML input file shown above results in the following
( has been adjusted here for clarity):
&?xml version="1.0" encoding="UTF-8"?&
&html xmlns="http://www.w3.org/1999/xhtml"&
&head& &title&Testing XML Example&/title& &/head&
&h1&Persons&/h1&
&li&Ismincius, Morka&/li&
&li&Smith, John&/li&
This XHTML generates the output below when rendered in a web browser.
Rendered XHTML generated from an XML input file and an XSLT transformation.
In order for a web browser to be able automatically to apply an XSL transformation to an XML document on display, an XML stylesheet processing instruction can be inserted into XML. So, for example, if the stylesheet in Example 2 above were available as "example2.xsl", the following instruction could be added to the original incoming XML:
&?xml-stylesheet href="example2.xsl" type="text/xsl" ?&
In this example, text/xsl is technically incorrect according to the W3C specifications (which say the type should be text/xml), but it is the only media type that is widely supported across browsers as of 2009.
– a list of some commonly used XSLT structures.
– a dialect differential between XSLT1 and XSLT2+.
– a family of languages of which XSLT is a member
or XSL-FO – An XML-based language for documents, usually generated by transforming source documents with XSLT, consisting of objects used to create formatted output
– a starting point for filter chains that add or remove data elements from XML trees in a transformation pipeline
– a -based framework for processing data with XSLT and other transformers.
– another structured text processing language (proprietary software)
– is an XSLT stylesheet that generates XHTML documentation from XML Schema Definition language (XSD) schema.
. XSL Transformations (XSLT) Version 1.0 W3C Recommendation. W3C. 16 November .
Michael Kay.
. W3C 2012.
. W3.org. .
. W3.org. .
. W3.org. .
. W3.org. .
. w3 2014.
Kay, Michael. . Balisage: The Markup Conference 2010 Proceedings 2012.
. XSLT is a very specialized language with a distinct declarative flavor.
Kay, Michael. . IBM 2013.
. XSLT declarations define a set of rules and guidelines that are applied during processing according to a predefined algorithm.
. Exselt. .
. CPAN 2012.
. sourceforge.net 2012.
. Microsoft 2012.
. Saxonica 2012.
. Project.inria.fr. .
Saxonica. .
Frameless. .
Delpratt, O'Neil (June 2013). . XML London 2013: 35–48. :.  .
Broersma, R van der Kolk, Yolijn (June 2014). . XML London 2014: 128–132. :.  .
. Stack Overflow. .
- Article describing implementation & optimization details of a popular XSLT processor.
Lumley, J Kay, Michael (June 2015). . XML London 2015: 9–25. :.  .
Kay, M Lockett, Debbie (June 2014). . XML London 2014: 10–23. :.  .
. W3C 2012.
. IANA 2012.
. Microsoft 2012.
Kay, Michael (2008). XSLT 2.0 and XPath 2.0 Programmer's Reference. Wiley. p. 100.  .
. W3C. 16 November .
XSLT by Doug Tidwell, published by O’Reilly ( )
XSLT Cookbook by Sal Mangano, published by O’Reilly ( )
XSLT 2.0 Programmer's Reference by
XSLT 2.0 and XPath 2.0 Programmer's Reference by Michael Kay ( )
XSLT 2.0 Web Development by Dmitry Kirsanov ( )
XSL Companion, 2nd Edition by Neil Bradley, published by Addison-Wesley ( )
XSLT and XPath on the Edge (Unlimited Edition) by , published by Hungry Minds Inc, U.S. ( )
XSLT & XPath, A Guide to XML Transformations by John Robert Gardner and Zarella Rendon, published by Prentice-Hall ( )
XSL-FO by Dave Pawson, published by O'Reilly ( )
Wikibooks has a book on the topic of:
Wikimedia Commons has media related to .
Documentation
XSLT code libraries
is a widespread community initiative to provide extensions to XSLT.
is a library implementing support for
in XSLT. FXSL is written in XSLT itself.
xsltsl, provides the XSLT developer with a set of XSLT templates for commonly used functions. These are implemented purely in XSLT, that is they do not use any extensions. xsltsl is a SourceForge project.
A GUI for Saxon that provides a point and click interface for running transforms.
JavaScript library that transforms XML with XSLT in the browser.
: Hidden categories:&script&STK
&& STK.pageletM
STK.pageletM.view({"pid":"pl_content_topTip","js":["home\/js\/pl\/content\/topTip.js?version=82741f9dbc83cbfd"]})&/script&
&script&STK
&& STK.pageletM
STK.pageletM.view({"pid":"plc_main","js":[],"css":[],"html":"&div
class="W_main_c" id="Box_center" ucardconf="type=1"
smartconf="type=1"&\n
&!--Mpublisher pl--&\n
id="pl_content_publisherTop"&\n \n
&\/div&\n \n \t&div
id="pl_content_biztips"&&\/div&\n
\n &!--Mfeedlist pl--&\n
id="pl_content_homeFeed"&&\/div&\n
&\/div&\n&div
id="Box_right" class="W_main_r"&\n
id="pl_content_setskin"&&\/div&\n
&div id="pl_business_enterpriseWeiboNew"
&&\/div&\n
&div id="pl_content_mood"
&&\/div&\n
&div id="trustPagelet_ugrowth_invite"
&&\/div&\n
&div id="trustPagelete_recom_interest"
&&\/div&\n
&div id="pl_rightmod_ads35"
&&\/div&\n
&div id="trustPagelete_zt_hottopic"
&&\/div&\n
&div id="trustPagelet_member_zone"
&&\/div&\n
&div id="trustPagelete_recom_allinone"
&&\/div&\n
&div id="pl_rightmod_ads36"
&&\/div&\n
&div id="pl_rightmod_vservice"
&&\/div&\n
&div id="pl_rightmod_help"
&&\/div&\n
&div id="pl_rightmod_noticeboard"
&&\/div&\n
&\/div&\n&div
id="pl_content_topjs"&&\/div&\n&div
id="pl_leftNav_commonjs"&&\/div&\n&div
id="pl_content_versionTip"&&\/div&\n&div
id="pl_common_newuserguide"&&\/div&
\n&div id="pl_content_bubBox" class="W_main_c"
style="display:"&&\/div&\n"})&/script&
&script&STK
&& STK.pageletM
STK.pageletM.view({"pid":"pl_content_publisherTop","js":["home\/js\/pl\/content\/publisherTop.js?version=82741f9dbc83cbfd"],"css":["style\/css\/module\/combination\/A_layer_send_weibo.css?version=82741f9dbc83cbfd"],"html":"&div
class="send_weibo send_weibo_current"
node-type="wrap"&\n&div
class="title"&&\/div&\n&div
class="num" node-type="num" style="display:
none"&\u8bf7\ue\u53d1\u8a00\uff0c\u8fd8\u53ef\u4ee5\u8f93\u5165&span&140&\/span&\u5b57&\/div&\n&div
class="key W_textb"
node-type="recommendTopic"&&a
href="http:\/\/huati.weibo.com\/19483?refer=homright"
target="_blank"&@\u59da\u6668
\u542b\u6cea\u7b54\u5e94\u7537\u53cb\u6c42\u5a5a\uff0c\u53d1\u5fae\u535a\u795d\u798f\u\uff01&\/a&\u3000
href="http:\/\/hot.plaza.weibo.com?refer=homright"
target="_blank"&24\u5c0f\u65f6\u70ed\u535a&\/a&
&a href="javascript:;"
style="position:top:-1000"
title="\u5fae\u535a\u\u"&&\/a&\n&a
href="javascript:;" id="focus_feed_list"
style="position:top:-1000"&&\/a&&\/div&\n&div
class="input"&\n&div
class="top_border"&\n&div
class="bottom_border"&&textarea
tabindex="1" title="\u5fae\u535a\u8f93\u" name=""
node-type="textEl" \n\tstyle="height:
55"&&\/textarea&\n&div
class="send_succpic" style="display: none"
node-type="successTip"&&\/div&\n&\/div&\n&\/div&\n&\/div&\n&div
class="btn"&&a tabindex="2"
href="javascript:void(0);" class="disable"
diss-data="module=stissue"\n\tnode-type="publishBtn"
title="\u53d1\u5e03\u5fae\u535a\u6309\u94ae"&&\/a&\n&\/div&\n&div
class="kind W_linkb" node-type="widget"
node-data="number=4"&\n&div
class="limits W_linkb"&&a
suda-data="key=tblog_edit_exposure&value=edit_click"
action-type="showPublishTo" node-type="showPublishTo"
href="javascript:void(0)" onclick="return false"
class="W_moredown"
title="\u516c\u5f00-\u4f60\u53d1\u\u5fae\u535a\u53ef\u4ee5\u88ab\u\u516c\u5f00\u67e5\u770b\u54e6"&&em&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
alt="\u516c\u5f00" class="i_conn_public"&
\u516c\u5f00&\/em&&span
class="more"&&\/span&&\/a&&\/div&\n&a
tabindex="3" href="javascript:void(0);" class="face"
action-type="face" action-data="log=face"
title="\u"
node-type="smileyBtn"&\u&\/a&&a
tabindex="3" href="javascript:void(0);" class="img"
action-type="image"
action-data="log=image&isimage=1"
title="\u56fe\u7247"
&\u56fe\u7247&\/a&&a
tabindex="3" href="javascript:void(0);" class="movie"
action-type="video" action-data="log=" title="\u89c6\u9891"
&\u89c6\u9891&\/a&&a
tabindex="3" href="javascript:void(0);" class="music"
action-type="music" action-data="log=" title="\u97f3\u4e50"
&\u97f3\u4e50&\/a&&a
tabindex="3" href="javascript:void(0);" class="topic"
action-type="topic" action-data="log=topic"
title="\u8bdd\u9898"
&\u8bdd\u9898&\/a&&a
tabindex="3" href="javascript:void(0);" class="vote"
action-type="vote" action-data="log=vote"
title="\u"
&\u&\/a&&span
node-type="cont_btns"&&\/span&\n&\/div&\n&\/div&\n"})&/script&
&script&STK
&& STK.pageletM
STK.pageletM.view({"pid":"pl_content_homeFeed","js":["home\/js\/pl\/content\/homeFeed.js?version=82741f9dbc83cbfd"],"css":["style\/css\/module\/combination\/A_feed_function.css?version=82741f9dbc83cbfd","style\/css\/module\/layer\/layer_comments_list.css?version=82741f9dbc83cbfd"],"html":"&div
node-type="feed_nav" mblogsorttype="1"
mblogsorthelp="1"&\n\t&!--
\u5bfc\u822a\u680f --&\n\t&div
class="newFilter W_texta"&\n\t &div
class="nfTagB_group nfTagB clearfix"&\n\t
&ul&\n\t &li
class="current" node-type="feed_group_tab"
action-type="order_by_time"
&&span&&em&&a
suda-data="key=tblog_home_tab&value=all_tblog"
class="W_texta" onclick="return
"&\u\u5fae\u535a&\/a&&\/em&&\/span&&\/li&\n\t&li
action-type="order_by_weiqun"
node-type="order_by_weiqun"&&span&&em&&a
suda-data="key=tblog_weiqun_feed&value=my_weiqun"
href="\/ronmf?groupfeed=1"&\u\u5fae\u7fa4&\/a&&\/em&&\/span&&\/li&\n\t\t&li
node-type="feed_hot_tab" action-type="order_by_hot"
&&span&&em&&a
suda-data="key=tblog_home_hot&value=tab_click"
href="?hotmblog=1"&\u70ed\u95e8\u5fae\u535a&\/a&&\/em&&\/span&&\/li&\n\t\t&li
style='display:'node-type="order_by_collect"
action-type="order_by_collect"&&span&&em&&a
suda-data="key=jxweibo_homefeedlabel&value=jxweibo_homefeedlabel"
href="\/ronmf?jx=1"&\u5fae\u535a\u7cbe\u9009&\/a&&\/em&&\/span&&\/li&\n\t
&\/ul&\n\t \t &div
class="interOder clearfix" node-type="smartSortSelect"
smartsorttype="-1"&\n\t &a
href="javascript:void(0);" action-type="smartSortSelect"
class="W_moredown"&\n\t &span
class="txt"&&strong&\uf&\/strong&&\/span&&span
class="more"&&\/span&\n\t
&\/a&\n\t &a
class="icon_help_ask" target="_blank"
href="http:\/\/help.weibo.com\/faq\/q\/1201"
action-type="smartSortHelp"
suda-data="key=smart_feed&value=help_button"&&\/a&\n\t
&\/div&\n\t \t
&\/div&\n\t&\/div&\n\t&!--
\/\u5bfc\u822a\u680f --&\n &!--
\u\u5fae\u535a --&\n\t&div
class="newFilter W_texta" node-type="feed_group"
& \t\n\t&div class="nfTagB
nfTagB_sec clearfix"
node-type="groupList"&\n\t\t&ul
node-type="feedGroup"&\n\t\t&li
action-data="id=0" action-type="group" class="current
W_texta"&&span&\u&\/span&&\/li&\n\t\t&li
class="W_vline"&|&\/li&\n\t\t&li
action-type="attention" &&a
suda-data="key=tblog_home_tab&value=attention"
href="?attention=1"
title="\u76f8\u4e92\u"&\u76f8\u4e92\u&\/a&&\/li&\n\t\t&li
action-type="whisper"&\n\t\t&a
href="?whisper=1"
title="\u\u"&\u\u&\/a&\n\t\t\t&\/li&\n\t\t\t&li
class="W_vline"&|&\/li&\n\t&li
action-data="id=464082" action-type="group"
&\n\t\t\t&a
suda-data="key=tblog_home_tab&value=group:464082"
onclick='' href="\/ronmf?gid=464082"
title="\u4eb2\u53cb"&\u4eb2\u53cb&\/a&\n\t\t&\/li&\n\t\t\t&li
class="W_vline"&|&\/li&\n\t&li
action-data="id=456112" action-type="group"
&\n\t\t\t&a
suda-data="key=tblog_home_tab&value=group:456112"
onclick='' href="\/ronmf?gid=456112"
title="\u77f3\u95e8"&\u77f3\u95e8&\/a&\n\t\t&\/li&\n\t\t\t&li
class="W_vline"&|&\/li&\n\t&li
action-data="id=025123" action-type="group"
&\n\t\t\t&a
suda-data="key=tblog_home_tab&value=group:025123"
onclick='' href="\/ronmf?gid=025123"
title="\u57ce\u5357"&\u57ce\u5357&\/a&\n\t\t&\/li&\n\t&li
class="W_vline"&|&\/li&\n\t\t&li
node-type="groupMoreBtn"&\n\t&a
onclick="" href="#"
class="W_moredown"&&span
class="txt"&\u66f4\u591a&\/span&&span
class="more"&&\/span&&\/a&\n\t\t&\/li&\n\t\t&!--
\n\t\t &li
class="W_vline"&|&\/li&\n\t
\t\t &li class="user_limit" action-data="rank=0"
action-type="rank" &\n\t \t\t \t&a
href="\/ronmf?visible=1"
title='\u53d1\u7ed9\u6211\u53ef\u89c1'&&span
class="icon_lock_s"&&\/span&\u53d1\u7ed9\u6211\u53ef\u89c1&\/a&\n\t
\t\t &\/li&\n\t \t\t
--&\t\t\n\t\t&\/ul&\n\t\t&div
class="interOder clearfix"&\n\t\t&a
onclick="" href="javascript:void(0);"
title="\u" class="W_Titarr_off"
action-data="type=1"
action-type="search_folding"&&\/a&\n\t\t&\/div&\t
\t\n\t&\/div&\n\t\t\n\t&!--
feed\u7b5b\u --&\n\t&div
class="nfBox" style="display:none"
node-type="search"&\n\t\t&div
class="nfBoxSim clearfix"
&\n\t\t&div class="left"
node-type="feedType"&\n\t&a
suda-data="key=tblog_home_tab&value=all"
href="\/ronmf" class="current W_texta" action-data="type=0"
action-type="search_type"&\u&\/a&\n\t&em
class="W_vline"&|&\/em&\n\t&a
suda-data="key=tblog_home_tab&value=org"
href="\/ronmf?is_ori=1" action-data="type=1"
action-type="search_type"&\u539f\u521b&\/a&\n\t&em
class="W_vline"&|&\/em&\n\t&a
suda-data="key=tblog_home_tab&value=pic"
href="\/ronmf?is_pic=1" action-data="type=2"
action-type="search_type"&\u56fe\u7247&\/a&\n\t&em
class="W_vline"&|&\/em&\n\t&a
suda-data="key=tblog_home_tab&value=video"
href="\/ronmf?is_video=1" action-data="type=3"
action-type="search_type"&\u89c6\u9891&\/a&\n\t&em
class="W_vline"&|&\/em&\n\t&a
suda-data="key=tblog_home_tab&value=music"
href="\/ronmf?is_music=1" action-data="type=4"
action-type="search_type"&\u97f3\u4e50&\/a&\n\t\t&\/div&\n\t\t&div
class="right"&\n\t&div
class="searchbg"&\n\t&div
class="sh_input"&\n\t\t&form
node-type="singleForm" action="\/"
method="get"&\t\n\t\t&input
type="text" name="key_word" node-type="simpleSearch"
class="input"
placeholder="\u67e5\u627e\u4f5c\u\u\u\u7b7e"
value="\u67e5\u627e\u4f5c\u\u\u\u7b7e"&\n\t\t&input
type="hidden" name="is_search" value="1"
\/&\t\n\t\t&a
suda-data="key=tblog_home_tab&value=key_search"
title="\u641c\u7d22" href="#" onclick=""
action-type="simpleSearchBtn"
class="btn"&&\/a&\n\t\t&\/form&\t\n\t&\/div&\n\t&a
suda-data="key=tblog_home_tab&value=search"
onclick="" href="#" class="searchadv"
action-data="type=0"
action-type="search_adv"&\u9ad8\u7ea7\u641c\u7d22&\/a&\n\t&\/div&\n\t\t&\/div&\n\t\t&\/div&&div
class="senSear" style="display:
"&\n\t\t&div
class="title"&&p
class="left"&\u9ad8\u7ea7\u641c\u7d22&\/p&&a
onclick="" href="#" class="right"
action-data="type=1"
action-type="search_adv"&\u5173\u95ed\u9ad8\u7ea7\u641c\u7d22&\/a&&\/div&\n\t\t&form
method="get" action=""
node-type="searchForm"&\n\t&dl
class="s_type
clearfix"&\n\t&dt&\u7c7b&&&&\u578b\uff1a&\/dt&\n\t&dd&\n\t\t&input
type="checkbox" checked="checked" value="1" name="is_ori"
id="filter_ori" class="W_checkbox" action-data="type=1"
action-type="search_check"&&label
for="filter_ori"&\u539f\u521b&\/label&\n\t\t&input
type="checkbox" checked="checked" value="1"
name="is_forward" id="filter_ret" class="W_checkbox"
action-data="type=5"
action-type="search_check"&&label
for="filter_ret"&\u8f6c\u53d1&\/label&\n\t\t&input
type="checkbox" checked="checked" value="1" name="is_text"
id="filter_text" class="W_checkbox" action-data="type=6"
action-type="search_check"&&label
for="filter_text"&\u7eaf\u&\/label&\n\t\t&input
type="checkbox" checked="checked" value="1" name="is_pic"
id="filter_pic" class="W_checkbox" action-data="type=2"
action-type="search_check"&&label
for="filter_pic"&\u542b\u56fe\u7247&\/label&\n\t\t&input
type="checkbox" checked="checked" value="1" name="is_video"
id="filter_video" class="W_checkbox" action-data="type=3"
action-type="search_check"&&label
for="filter_video"&\u542b\u89c6\u9891&\/label&\n\t\t&input
type="checkbox" checked="checked" value="1" name="is_music"
id="filter_music" class="W_checkbox" action-data="type=4"
action-type="search_check"&&label
for="filter_music"&\u542b\u97f3\u4e50&\/label&\n\t&\/dd&\n\t&\/dl&\n\t&dl
class="s_type s_key
clearfix"&\n\t&dt&\ue\u5b57\uff1a&\/dt&\n\t&dd&\n\t\t&input
type="text"
value="\u641c\u7d22\u\u4eba\u8bf4\u7684\u8bdd"
class="W_input iw1" id="key_word"
placeholder="\u641c\u7d22\u\u4eba\u8bf4\u7684\u8bdd"
name="key_word" style="color: rgb(153, 153, 153);"
node-type="keyword"&\n\t&\/dd&\n\t&dt&\u65f6&&&&\u95f4\uff1a&\/dt&\n\t&dd&\n\t\t&input
type="text" start_date=""
value="\u\u65e5\u671f" class="W_input iw2"
id="start_time" name="start_time" style="color: rgb(153, 153,
153);" readonly="true" action-data="type=1"
action-type="search_date"&\n\t\t&span
class="txt"&\u5230&\/span&\n\t\t&input
type="text" value=""
def="\u70b9\u51fb\u\u65e5\u671f" class="W_input iw2"
id="end_time" name="end_time" style="color: rgb(153, 153,
153);" readonly="true" action-data="type=2"
action-type="search_date"&\n\t&\/dd&\n\t&\/dl&\n\t&dl
class="s_type s_btn
clearfix"&\n\t&dt&&&\/dt&\n\t&dd&\n\t\t&a
onclick="" href="javascript:void();"
class="W_btn_a" id="filter_adv_btn" action-data=""
action-type="search_button"&&span&\u641c\u7d22&\/span&&\/a&\n\t\t&span
class="W_error"
node-type="advSearchErr"&&\/span&\n\t&\/dd&\n\t&\/dl&\n\t\t&\/form&\n\t\t&\/div&\n\t&\/div&\n\t&!--
\/feed\u7b5b\u
--&\n\t\n\t&!--
\u\u\u5c42
--&\n\t&div class="layer_menu_list"
style="position: top: 21 left: 32 z-index: 99;
node-type="feedGroupLayer"&\n\t\t&ul&\n\t&li&&a
suda-data="key=tblog_home_tab&value=group:918475"
action-data="id=918475" action-type="group"
onclick=""
href="\/ronmf?gid=918475"&\u97f3\u4e50&\/a&&\/li&\n\t&li&&a
suda-data="key=tblog_home_tab&value=group:153363"
action-data="id=153363" action-type="group"
onclick=""
href="\/ronmf?gid=153363"&sm&\/a&&\/li&\n\t&li&&a
suda-data="key=tblog_home_tab&value=group:827949"
action-data="id=827949" action-type="group"
onclick=""
href="\/ronmf?gid=827949"&\u5bb6\u6559&\/a&&\/li&\n\t\t&li
class="line"&&\/li&\n\t\t&li
class="opt" action-data=""
action-type="group_add"&&a
suda-data="key=tblog_home_tab&value=create_grp"
onclick=""
href="#"&&img width="11"
height="11" title="\u521b\u5efa\u" class="iconadd"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"&\u521b\u5efa\u&\/a&&\/li&\n\t\t&li
class="opt" action-data=""
action-type="group_sort"&&a
suda-data="key=tblog_home_tab&value=sort_grp"
onclick=""
href="#"&&img width="11"
height="11" title="\u8c03\u\u7ec4\u987a\u5e8f"
class="iconord"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"&\u8c03\u\u7ec4\u987a\u5e8f&\/a&&\/li&\n\t\t&li
class="opt"&&a
suda-data="key=tblog_home_tab&value=manage_grp"
href="\/\/follow"&&img
width="11" height="11" title="\u7ba1\u\u"
class="iconsetup"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"&\u7ba1\u\u&\/a&&\/li&\n\t\t&\/ul&\n\t&\/div&\t\n\t&!--
\/\u\u\u5c42
--&\n\t&\/div&\n\t&!--
\uf\u\u6a21\u5f0f
--&\n\t&div class="layer_menu_list"
style="position: top: 21 left: 32 z-index: 99;
node-type="smartSortMore"&\n\t&ul
class="smart_list"&\n\t\t&li
node-type="feedSortMenu" sorttype="0"
action-type="smart_back_home"
title="\u\u65b0\u\u7684\u5fae\u535a\u53d1\u\u95f4\uf
suda-data="key=smart_feed&value=list_by_time"
href="\/ronmf?mblogsort=2"&&span
class="icon_succS"&&\/span&\u66f4\u65b0\u65f6\u95f4&\/a&&\/li&\n\t\t&li
node-type="feedSortMenu" sorttype="1"
action-type="order_by_smart" class="show_icon"
title="\u\u5bf9\u5fae\u535a\u611f\u\u7a0b\u5ea6\uf
suda-data="key=smart_feed&value=list_by_genius"
href="\/ronmf?mblogsort=1"&&span
class="icon_succS"&&\/span&\u667a\u80fd\uf&\/a&&\/li&\n\t&\/ul&\n\t&\/div&\n\t&!--
\/\uf\u\u6a21\u5f0f
--&\n\t&!--
\/\u\u5fae\u535a
--&\n\t\n\t&!--
\u\u5bc6\u53cb --&\n\t&div
class="newFilter W_texta" node-type="feed_closeFriends"
style='display:'& \t\n\t&div
class="nfTagB nfTagB_sec
clearfix"&\n\t\t&ul
node-type="closeFriendType"&\n\t\t&li
action-data="cftype=0" class="current
W_texta"&&span&\u&\/span&&\/li&\n\t\t&li
class="W_vline"&|&\/li&\n\t\t&li
action-data="cftype=1" action-type="cf_tab_change"
href="?ismiyou=1&cftype=1"
title="\u4ec5\u\u\u5fae\u535a"&\u4ec5\u\u\u5fae\u535a&\/a&&\/li&\n\t\t&li
class="W_vline"&|&\/li&\n\t\t&li
action-data="cftype=2" action-type="cf_tab_change"
href="?ismiyou=1&cftype=2"
title="\u52a8\u6001"&\u52a8\u6001&\/a&&\/li&\n\t\t&\/ul&\n\t&\/div&\n\t&\/div&\n\t&!--
\/\u\u5bc6\u53cb
--&\n\t\n\t&!--
\u70ed\u95e8\u5fae\u535a --&\n\t&div
class="nfBox" node-type="feed_hot" style='display:'
&\n\t&div class="nfBoxSim
clearfix"&\n\t\t&div class="left"
node-type="hot_section"&\u\ub\uff1a\n\t\t&a
suda-data="key=tblog_home_hot&value=hot_9999"
action-type="hot_section" action-data="section=0"
href="?hotmblog=1" class="current
W_texta"&\u&\/a&&em
class="W_vline"&|&\/em&&a
suda-data="key=tblog_home_hot&value=hot_1099"
action-type="hot_section" action-data="section=1099"
href="?hotmblog=1&section=1099"&\u5a31\u4e50&\/a&&em
class="W_vline"&|&\/em&&a
suda-data="key=tblog_home_hot&value=hot_1899"
action-type="hot_section" action-data="section=1899"
href="?hotmblog=1&section=1899"&\u5e7d\u9ed8&\/a&&em
class="W_vline"&|&\/em&&a
suda-data="key=tblog_home_hot&value=hot_1599"
action-type="hot_section" action-data="section=1599"
href="?hotmblog=1&section=1599"&\u65f6\u5c1a\u&\/a&&em
class="W_vline"&|&\/em&&a
suda-data="key=tblog_home_hot&value=hot_1999"
action-type="hot_section" action-data="section=1999"
href="?hotmblog=1&section=1999"&\u54f2\u8a00&\/a&&em
class="W_vline"&|&\/em&&a
suda-data="key=tblog_home_hot&value=hot_1799"
action-type="hot_section" action-data="section=1799"
href="?hotmblog=1&section=1799"&\u793e\u4f1a&\/a&&em
class="W_vline"&|&\/em&&a
onclick="" href="javascript:void(0);"
class="W_moredown"
node-type="hotmblog_more"&&span
class="txt"&\u66f4\u591a&\/span&&span
class="more"&&\/span&&\/a&\n\t\t&\/div&\n\t\t&div
class="right"&\n\t\t&div
class="searchbg"&\n\t&a
suda-data="key=tblog_home_hot&value=refresh_button"
action-type="hot_refresh" title="\u"
href="javascript:void(0);" onclick="return
"&\u&\/a&\n\t\t&\/div&\n\t\t&\/div&\n\t&\/div&\n\t&!--
\u4e0b\u62c9\u5c42 --&\n\t&div
class="layer_menu_list" style="position: top: 21
left: 32 z-index: 99; display:"
node-type="hotmblogLayer"&\n\t\t&ul&\n\t\t&li&&a
suda-data="key=tblog_home_hot&value=hot_1699"
action-data="section=1699" action-type="hot_section"
onclick=""
href="?hotmblog=1&section=1699"&\u661f\u5ea7&\/a&&\/li&\n\t&li&&a
suda-data="key=tblog_home_hot&value=hot_1399"
action-data="section=1399" action-type="hot_section"
onclick=""
href="?hotmblog=1&section=1399"&\u4f53\u80b2&\/a&&\/li&\n\t&li&&a
suda-data="key=tblog_home_hot&value=hot_1199"
action-data="section=1199" action-type="hot_section"
onclick=""
href="?hotmblog=1&section=1199"&\u89c6\u9891&\/a&&\/li&\n\t&li&&a
suda-data="key=tblog_home_hot&value=hot_1499"
action-data="section=1499" action-type="hot_section"
onclick=""
href="?hotmblog=1&section=1499"&\u&\/a&&\/li&\n\t&li&&a
suda-data="key=tblog_home_hot&value=hot_1299"
action-data="section=1299" action-type="hot_section"
onclick=""
href="?hotmblog=1&section=1299"&\u8d22\u7ecf\u79d1\u6280&\/a&&\/li&\n\t\t\t&\/ul&\n\t&\/div&\t\n\t&\/div&\n\t&!--
\/\u70ed\u95e8\u5fae\u535a
--&\n&\/div&\n&!--feed
list--&\n\t\t&div class="feed_lists
W_linka W_texta" pageNum="1"
node-type='feed_list'&\n\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="6076"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/lengxiaohua"
title="\u6211\u4eec\u\u51b7\u7b11\u8bdd"&&img
usercard="id="
title="\u6211\u4eec\u\u51b7\u7b11\u8bdd" alt=""
width="50" height="50"
src="http:\/\/tp2.sinaimg.cn\/\/50\/\/0"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u6211\u4eec\u\u51b7\u7b11\u8bdd&gender=f&mid=6076&appname=\u65b0\u6d6a\u5fae\u535a&isactive=0&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u6211\u4eec\u\u51b7\u7b11\u8bdd"
title="\u6211\u4eec\u\u51b7\u7b11\u8bdd"
href="\/lengxiaohua"
title="\u6211\u4eec\u\u51b7\u7b11\u8bdd"
usercard="id="&\n\t\t\u6211\u4eec\u\u51b7\u7b11\u8bdd&\/a&&a
target="_blank"
href="http:\/\/vip.weibo.com\/personal?from=main"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u5fae\u535a\u4f1a\u5458"
alt="\u5fae\u535a\u4f1a\u5458"
class="ico_member"\/&&\/a&\uff1a&em&\u5c4c\u4e1d\u4ece\u6bd5\u4e1a\u65f6\u\u30\u4e09\u5e74\u540e\u4ebf\u4e07\u8eab\u5bb6\u7684\u7cbe\u5f69\u52b1\u5fd7\u4e4b\u65c5...\u4e0e\u541b\u&img
src="http:\/\/img.t.sinajs.cn\/t35\/style\/images\/common\/face\/ext\/normal\/d0\/ltshanxia_org.gif"
title="[lt\u95ea\u778e]" alt="[lt\u95ea\u778e]" type="face"
\/&...(\u8f6c)&\/em&&\/p&\n\t\t\n\t\n&ul
class="piclist"
node-type="feed_list_media_prev"&\n\t&li&\n\t\t&div
class="chePicMin W_bgcolor_mini bigcursor"
action-type="feed_list_media_img"
suda-uatrack="key=smart_feed&value=zoomin_pic"&&img
class="bigcursor" node-type="feed_list_media_bgimg"
src="http:\/\/ww2.sinaimg.cn\/thumbnail\/61e8a1fdjw1dvyl2r5ye3j.jpg"
alt=""\/&&img style="left: 39.5
top: 52 display:"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/loading.gif"
class="loading_gif"&&\/div&\n\t&\/li&\n\t&\/ul&\n\t&dl
class="comment W_textc W_linecolor W_bgcolor" style="display:
node-type="feed_list_media_disp"&&\/dl&\n\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&url=http:\/\/weibo.com\/\/yxqWoAzrS&mid=6076&name=\u6211\u4eec\u\u51b7\u7b11\u8bdd&uid=&domain=lengxiaohua&pid=61e8a1fdjw1dvyl2r5ye3j"
&\u8f6c\u53d1(5)&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba(1)&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqWoAzrS" title=" 16:12"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&40\u79d2\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.com"
rel="nofollow"&\u65b0\u6d6a\u5fae\u535a&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=6076&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\u4e3e\u62a5&\/a&\n\t\t&\/em&\n\t\t&\/p&\n\t\t&div
node-type="feed_list_repeat" class="repeat W_textc W_linecolor
W_bgcolor"
style="display:"&&\/div&\n\t&\/dd&\n\t&dd
class="clear"&&\/dd&\n\t&\/dl&\t\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="0047" isForward="1"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/crazyad"
title="\u5e7f\u544a\u4e5f\u75af\u72c2"&&img
usercard="id=" title="\u5e7f\u544a\u4e5f\u75af\u72c2"
alt="" width="50" height="50"
src="http:\/\/tp4.sinaimg.cn\/\/50\/\/1"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u5e7f\u544a\u4e5f\u75af\u72c2&gender=m&mid=0047&appname=\u65b0\u6d6a\u5fae\u535a&isactive=0&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u5e7f\u544a\u4e5f\u75af\u72c2"
title="\u5e7f\u544a\u4e5f\u75af\u72c2" href="\/crazyad"
title="\u5e7f\u544a\u4e5f\u75af\u72c2"
usercard="id="&\n\t\t\u5e7f\u544a\u4e5f\u75af\u72c2&\/a&&a
target="_blank"
href="http:\/\/vip.weibo.com\/personal?from=main"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u5fae\u535a\u4f1a\u5458"
alt="\u5fae\u535a\u4f1a\u5458"
class="ico_member"\/&&\/a&\uff1a&em&\u5f88\ub~&\/em&&\/p&\n\t\t\n\t\t&dl
class="comment W_textc W_linecolor
W_bgcolor"&\n\t\t&dd class="arrow
W_bgcolor_arrow"&&em
class="W_arrline"&\u25c6&\/em&&span&\u25c6&\/span&&\/dd&\n\t\t
node-type="feed_list_forwardContent"&\n\t\t&a
nick-name="\u821e\u754c\u9650" href="\/u\/"
title="\u821e\u754c\u9650"
usercard="id="&\n\t\t@\u821e\u754c\u9650&\/a&\uff1a&em&\ua\u5b50\u8df3\u8d77\u821e\u\u4f5c\u4e5f\u53ef\u4ee5\u5f88\u\uff0c\u4e5f\u53ef\u4ee5\u5f88\u53ef\u\uff01&a
title="http:\/\/t.cn\/zWN07Ed" href="http:\/\/t.cn\/zWN07Ed"
target="_blank" action-data="title=【J❤SH】Shane Harper(Team
Awesome) 舞蹈 transform
ya&short_url=http:\/\/t.cn\/zWN07Ed&full_url=http://v.youku.com/v_show/id_XMzEyODg1ODc2.html&metadata"
action-type="feed_list_media_video"
&http:\/\/t.cn\/zWN07Ed&span
class="feedico_vedio"
title="\u89c6\u9891"&&\/span&&\/a&&\/em&\n\t\t&\/dt&\n\t\t&dd
node-type='feed_list_media_prev'&\n\t\n&ul
class="piclist"&\n\t \t\t&li
action-data="title=【J❤SH】Shane Harper(Team Awesome) 舞蹈 transform
ya&short_url=http:\/\/t.cn\/zWN07Ed&full_url=http://v.youku.com/v_show/id_XMzEyODg1ODc2.html"
action-type="feed_list_media_video"
suda-uatrack="key=smart_feed&value=play_video"&\n\t\t&img
src="http:\/\/g1.ykimg.com\/E598EA19-39D7-F32AE3"
width="120" height="80" alt=""
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/feedvideoplay.gif"
class="video_play"
&\n\t\t&\/li&\n\t&\/ul&\n\t\t&\/dd&\n\t\t&dd
class="expand" style="display:"
node-type="feed_list_media_disp"&&\/dd&\n\t\t&dd
class="info W_linkb
W_textb"&\n\t&span&\n\t&a
href="\/\/ywIiW8D9W?type=repost"
suda-uatrack="key=smart_feed&value=details_feed"&\u8f6c\u53d1(1447)&\/a&\n\t&i
class="W_vline"&|&\/i&\n\t\t&a
href="\/\/ywIiW8D9W"
suda-uatrack="key=smart_feed&value=details_feed"&\u8bc4\u8bba(69)&\/a&\n\t&\/span&\n\t&a
class="date" href="\/\/ywIiW8D9W" title="
22:34" date="0" node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&8\ue5
22:34&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.com"
rel="nofollow"&\u65b0\u6d6a\u5fae\u535a&\/a&\n&\/dd&\t\t
\t\t&\/dl&\n\t\t\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&rootmid=7156&rootname=\u821e\u754c\u9650&rootuid=&rooturl=http:\/\/weibo.com\/\/ywIiW8D9W&url=http:\/\/weibo.com\/\/yxqWloarZ&mid=0047&name=\u5e7f\u544a\u4e5f\u75af\u72c2&uid=&domain="
&\u8f6c\u53d1&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqWloarZ" title=" 16:12"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&50\u79d2\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.com"
rel="nofollow"&\u65b0\u6d6a\u5fae\u535a&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=0047&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\u4e3e\u62a5&\/a&\n\t\t&\/em&\n\t\t&\/p&\n\t\t&div
node-type="feed_list_repeat" class="repeat W_textc W_linecolor
W_bgcolor"
style="display:"&&\/div&\n\t&\/dd&\n\t&dd
class="clear"&&\/dd&\n\t&\/dl&\t\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="8625" isForward="1"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/webotower"
title="\u\u4e50"&&img
usercard="id=" title="\u\u4e50" alt=""
width="50" height="50"
src="http:\/\/tp4.sinaimg.cn\/\/50\/\/1"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u\u4e50&gender=m&mid=8625&appname=\u65b0\u6d6a\u5fae\u535a&isactive=0&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u\u4e50" title="\u\u4e50"
href="\/webotower" title="\u\u4e50"
usercard="id="&\n\t\t\u\u4e50&\/a&&a
target="_blank"
href="http:\/\/vip.weibo.com\/personal?from=main"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u5fae\u535a\u4f1a\u5458"
alt="\u5fae\u535a\u4f1a\u5458"
class="ico_member"\/&&\/a&\uff1a&em&\u4e13\u4e1a\u4e50\u8ff7\u5fc5\u5907&\/em&&\/p&\n\t\t\n\t\t&dl
class="comment W_textc W_linecolor
W_bgcolor"&\n\t\t&dd class="arrow
W_bgcolor_arrow"&&em
class="W_arrline"&\u25c6&\/em&&span&\u25c6&\/span&&\/dd&\n\t\t
node-type="feed_list_forwardContent"&\n\t\t&a
nick-name="\u767e\u5ea6\u97f3\u4e50" href="\/musicbaidu"
title="\u767e\u5ea6\u97f3\u4e50"
usercard="id="&\n\t\t@\u767e\u5ea6\u97f3\u4e50&\/a&&a
target="_blank"
href="http:\/\/verified.weibo.com\/verify"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u65b0\u6d6a\u673a\u\u8bc1"
alt="\u65b0\u6d6a\u673a\u\u8bc1"
class="approve_co"\/&&\/a&\uff1a&em&\u7c73\u7c89\u4eec\uf\u5566~\u767e\u5ea6\u97f3\u4e50\u&a
href="\/n\/小米公司" usercard="name=\u5c0f\u7c73\u516c\u53f8"
&@\u5c0f\u7c73\u516c\u53f8&\/a&
&a href="\/n\/MIUI_ROM" usercard="name=MIUI_ROM"
&@MIUI_ROM&\/a&
\u\u63a8\u51fa\u5b9a\u\u\u4e50\u89e3\u51b3\u65b9\u6848\uff0c\u8ba9\u97f3\u4e50\u548c\u624b\u673a\u5b8c\u7f8e\u\uff01\u5c0f\u7c73\u\u\u53d1\u73b0\u97f3\u4e50\u\uff0c\u5373\u53ef\u4eab\u53d7\u767e\u5ea6\u97f3\u4e50\u63d0\u4f9b\u7684\u70ed\u6b4c\u699c\u\u65b0\u6b4c\u\u\u4e50\u4e13\uc\u968f\u5fc3\u542c\u670d\u52a1~\uMIUI2.8.10\u4ee5\u4e0a\uc\u90fd\u53ef\u4ee5\u54e6~
\u767e\u5ea6\u97f3\u4e50\uff0c\u4e0e\u7c73\u7c89\u540c\u884c\uff0c\u4e0e\u4f60\u540c\u884c~&\/em&\n\t\t&\/dt&\n\t\t&dd
node-type='feed_list_media_prev'&\n\t\n&ul
class="piclist"&\n\t
\t&li&\n\t\t&div
class="chePicMin W_bgcolor_mini bigcursor"
action-type="feed_list_media_img"
suda-uatrack="key=smart_feed&value=zoomin_pic"&&img
class="bigcursor" node-type="feed_list_media_bgimg"
src="http:\/\/ww4.sinaimg.cn\/thumbnail\/a252ec52jw1dvyj7gjaomj.jpg"
alt=""\/&&img style="left: 39.5
top: 52 display:"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/loading.gif"
class="loading_gif"&&\/div&\n\t&\/li&\n\t
\t&\/ul&\n\t\t&\/dd&\n\t\t&dd
class="expand" style="display:"
node-type="feed_list_media_disp"&&\/dd&\n\t\t&dd
class="info W_linkb
W_textb"&\n\t&span&\n\t&a
href="\/\/yxqti1wLI?type=repost"
suda-uatrack="key=smart_feed&value=details_feed"&\u8f6c\u53d1(160)&\/a&\n\t&i
class="W_vline"&|&\/i&\n\t\t&a
href="\/\/yxqti1wLI"
suda-uatrack="key=smart_feed&value=details_feed"&\u8bc4\u8bba(44)&\/a&\n\t&\/span&\n\t&a
class="date" href="\/\/yxqti1wLI" title="
15:00" date="0" node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&\u4eca\u5929
15:00&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/a.weibo.com\/proc\/productintro.php"
rel="nofollow"&\u4f01\u4e1a\u5fae\u535a&\/a&\n&\/dd&\t\t
\t\t&\/dl&\n\t\t\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&rootmid=4294&rootname=\u767e\u5ea6\u97f3\u4e50&rootuid=&rooturl=http:\/\/weibo.com\/\/yxqti1wLI&url=http:\/\/weibo.com\/\/yxqUEsJDH&mid=8625&name=\u\u4e50&uid=&domain=musicbaidu&pid=a252ec52jw1dvyj7gjaomj"
&\u8f6c\u53d1(1)&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba(1)&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqUEsJDH" title=" 16:08"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&5\uf\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.com"
rel="nofollow"&\u65b0\u6d6a\u5fae\u535a&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=8625&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\u4e3e\u62a5&\/a&\n\t\t&\/em&\n\t\t&\/p&\n\t\t&div
node-type="feed_list_repeat" class="repeat W_textc W_linecolor
W_bgcolor"
style="display:"&&\/div&\n\t&\/dd&\n\t&dd
class="clear"&&\/dd&\n\t&\/dl&\t\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="3737" isForward="1"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/u\/"
title="\u\u516c\u5bd3\u53f0\u8bcd"&&img
usercard="id="
title="\u\u516c\u5bd3\u53f0\u8bcd" alt=""
width="50" height="50"
src="http:\/\/tp1.sinaimg.cn\/\/50\/\/0"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u\u516c\u5bd3\u53f0\u8bcd&gender=f&mid=3737&appname=\u65b0\u6d6a\u5fae\u535a&isactive=0&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u\u516c\u5bd3\u53f0\u8bcd"
title="\u\u516c\u5bd3\u53f0\u8bcd"
href="\/u\/"
title="\u\u516c\u5bd3\u53f0\u8bcd"
usercard="id="&\n\t\t\u\u516c\u5bd3\u53f0\u8bcd&\/a&&a
target="_blank"
href="http:\/\/vip.weibo.com\/personal?from=main"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u5fae\u535a\u4f1a\u5458"
alt="\u5fae\u535a\u4f1a\u5458"
class="ico_member"\/&&\/a&&a
target="_blank"
href="http:\/\/all.vic.sina.com.cn\/361london"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u4f26\uc\u52a8"
alt="\u4f26\uc\u52a8"
class="ico_oly361"\/&&\/a&\uff1a&em&\u5f88\u559c\u6b22\u3002&img
src="http:\/\/img.t.sinajs.cn\/t35\/style\/images\/common\/face\/ext\/normal\/40\/hearta_org.gif"
title="[\u5fc3]" alt="[\u5fc3]" type="face"
\/&&\/em&&\/p&\n\t\t\n\t\t&dl
class="comment W_textc W_linecolor
W_bgcolor"&\n\t\t&dd class="arrow
W_bgcolor_arrow"&&em
class="W_arrline"&\u25c6&\/em&&span&\u25c6&\/span&&\/dd&\n\t\t
node-type="feed_list_forwardContent"&\n\t\t&a
nick-name="\u65f6\u5c1a\ue\u5973"
href="\/u\/" title="\u65f6\u5c1a\ue\u5973"
usercard="id="&\n\t\t@\u65f6\u5c1a\ue\u5973&\/a&\uff1a&em&\u767d\u8272+\u900f\u660e\u51b0\u6dc7\u6dcb\u84dd\u8272~~\u6e05\u723d\u5e05\u6c14~~\u592a\u5e72\u51c0\u4e86\u5427~~~\u60f3\uc\u4e00\u624b\u97e9\u56fd\u6f6e\u6d41\u8d44\u8baf\uff0c\u8bf7\u&a
href="\/n\/时尚最潮女"
usercard="name=\u65f6\u5c1a\ue\u5973"
&@\u65f6\u5c1a\ue\u5973&\/a&&\/em&\n\t\t&\/dt&\n\t\t&dd
node-type='feed_list_media_prev'&\n\t\n&ul
class="piclist"&\n\t
\t&li&\n\t\t&div
class="chePicMin W_bgcolor_mini bigcursor"
action-type="feed_list_media_img"
suda-uatrack="key=smart_feed&value=zoomin_pic"&&img
class="bigcursor" node-type="feed_list_media_bgimg"
src="http:\/\/ww4.sinaimg.cn\/thumbnail\/a94eade8gw1dvykw6bgg7j.jpg"
alt=""\/&&img style="left: 39.5
top: 52 display:"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/loading.gif"
class="loading_gif"&&\/div&\n\t&\/li&\n\t
\t&\/ul&\n\t\t&\/dd&\n\t\t&dd
class="expand" style="display:"
node-type="feed_list_media_disp"&&\/dd&\n\t\t&dd
class="info W_linkb
W_textb"&\n\t&span&\n\t&a
href="\/\/yxqQXsi4L?type=repost"
suda-uatrack="key=smart_feed&value=details_feed"&\u8f6c\u53d1(2)&\/a&\n\t&i
class="W_vline"&|&\/i&\n\t\t&a
href="\/\/yxqQXsi4L"
suda-uatrack="key=smart_feed&value=details_feed"&\u8bc4\u8bba&\/a&\n\t&\/span&\n\t&a
class="date" href="\/\/yxqQXsi4L" title="
15:59" date="0" node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&15\uf\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.com"
rel="nofollow"&\u65b0\u6d6a\u5fae\u535a&\/a&\n&\/dd&\t\t
\t\t&\/dl&\n\t\t\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&rootmid=2671&rootname=\u65f6\u5c1a\ue\u5973&rootuid=&rooturl=http:\/\/weibo.com\/\/yxqQXsi4L&url=http:\/\/weibo.com\/\/yxqUEb8md&mid=3737&name=\u\u516c\u5bd3\u53f0\u8bcd&uid=&domain=&pid=a94eade8gw1dvykw6bgg7j"
&\u8f6c\u53d1(1)&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqUEb8md" title=" 16:08"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&5\uf\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.com\/"
rel="nofollow"&\u65b0\u6d6a\u5fae\u535a&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=3737&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\u4e3e\u62a5&\/a&\n\t\t&\/em&\n\t\t&\/p&\n\t\t&div
node-type="feed_list_repeat" class="repeat W_textc W_linecolor
W_bgcolor"
style="display:"&&\/div&\n\t&\/dd&\n\t&dd
class="clear"&&\/dd&\n\t&\/dl&\t\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="3122"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/weixiaoshuo"
title="\u5fae\u5c0f\u8bf4"&&img
usercard="id=" title="\u5fae\u5c0f\u8bf4" alt=""
width="50" height="50"
src="http:\/\/tp4.sinaimg.cn\/\/50\/\/0"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u5fae\u5c0f\u8bf4&gender=f&mid=3122&appname=\u4e13\u9898-\u7b2c\u4e09\u5c4a\u5fae\u5c0f...&isactive=1&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u5fae\u5c0f\u8bf4" title="\u5fae\u5c0f\u8bf4"
href="\/weixiaoshuo" title="\u5fae\u5c0f\u8bf4"
usercard="id="&\n\t\t\u5fae\u5c0f\u8bf4&\/a&&a
target="_blank"
href="http:\/\/verified.weibo.com\/verify"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u65b0\u6d6a\u673a\u\u8bc1"
alt="\u65b0\u6d6a\u673a\u\u8bc1"
class="approve_co"\/&&\/a&\uff1a&em&\u4eca\ud\u\u516c\u4ea4\uff0c\u4e00\u4e2a\u5c0f\u\u88ab\u871c\u\u\u\u5b50\u5927\u54ed\u4e0d\u6b62\uff0c\u\u95ee\uff1a\u201c\u600e\u4e48\u4e86\uff0c\u600e\u4e48\u4e86\uff1f\u201d\u4ed6\u6ce3\u4e0d\u\u\uff1a\u201c\u\uff0c\u4e00\u4e2a\u7a7f\u7740\u6bdb\u\u82cd\u8747\u54ac\u4e86\u\u201d\u6211\uff1a\u\u8fd9\u4e2a\u597d\u840c\uff01&img
src="http:\/\/img.t.sinajs.cn\/t35\/style\/images\/common\/face\/ext\/normal\/42\/kawayi_org.gif"
title="[\u840c]" alt="[\u840c]" type="face"
src="http:\/\/img.t.sinajs.cn\/t35\/style\/images\/common\/face\/ext\/normal\/42\/kawayi_org.gif"
title="[\u840c]" alt="[\u840c]" type="face"
src="http:\/\/img.t.sinajs.cn\/t35\/style\/images\/common\/face\/ext\/normal\/42\/kawayi_org.gif"
title="[\u840c]" alt="[\u840c]" type="face"
\/&\uff08\u8f6c\uff09&\/em&&\/p&\n\t\t\n\t\n&ul
class="piclist"
node-type="feed_list_media_prev"&\n\t&li&\n\t\t&div
class="chePicMin W_bgcolor_mini bigcursor"
action-type="feed_list_media_img"
suda-uatrack="key=smart_feed&value=zoomin_pic"&&img
class="bigcursor" node-type="feed_list_media_bgimg"
src="http:\/\/ww3.sinaimg.cn\/thumbnail\/6d7fb7cbjw1dvyl564ui1j.jpg"
alt=""\/&&img style="left: 39.5
top: 52 display:"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/loading.gif"
class="loading_gif"&&\/div&\n\t&\/li&\n\t&\/ul&\n\t&dl
class="comment W_textc W_linecolor W_bgcolor" style="display:
node-type="feed_list_media_disp"&&\/dl&\n\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&url=http:\/\/weibo.com\/\/yxqUrclDI&mid=3122&name=\u5fae\u5c0f\u8bf4&uid=&domain=weixiaoshuo&pid=6d7fb7cbjw1dvyl564ui1j"
&\u8f6c\u53d1(58)&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba(5)&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqUrclDI" title=" 16:07"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&6\uf\u524d&\/a&
\u6765\u81ea&a
title="\u4e13\u9898-\u7b2c\u4e09\u5c4a\u5fae\u5c0f\u8bf4\ub"
target="_blank"
href="http:\/\/weibo.com\/z\/2012lovewxs\/index.html"
&\u4e13\u9898-\u7b2c\u4e09\u5c4a\u5fae\u5c0f...&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=3122&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\u4e3e\u62a5&\/a&\n\t\t&\/em&\n\t\t&\/p&\n\t\t&div
node-type="feed_list_repeat" class="repeat W_textc W_linecolor
W_bgcolor"
style="display:"&&\/div&\n\t&\/dd&\n\t&dd
class="clear"&&\/dd&\n\t&\/dl&\t\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="5127"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/u\/"
title="\u4e2d\u56fd\u597d\u58f0\u97f3"&&img
usercard="id=" title="\u4e2d\u56fd\u597d\u58f0\u97f3"
alt="" width="50" height="50"
src="http:\/\/tp1.sinaimg.cn\/\/50\/\/1"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u4e2d\u56fd\u597d\u58f0\u97f3&gender=m&mid=5127&appname=\u76ae\u76ae\u65f6\ua&isactive=1&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u4e2d\u56fd\u597d\u58f0\u97f3"
title="\u4e2d\u56fd\u597d\u58f0\u97f3" href="\/u\/"
title="\u4e2d\u56fd\u597d\u58f0\u97f3"
usercard="id="&\n\t\t\u4e2d\u56fd\u597d\u58f0\u97f3&\/a&&a
target="_blank"
href="http:\/\/verified.weibo.com\/verify"&&img
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/transparent.gif"
title= "\u65b0\u6d6a\u673a\u\u8bc1"
alt="\u65b0\u6d6a\u673a\u\u8bc1"
class="approve_co"\/&&\/a&\uff1a&em&&a
class="a_topic"
href="http:\/\/huati.weibo.com\/k\/中国好声音?from=501"&#\u4e2d\u56fd\u597d\u58f0\u97f3#&\/a&
\u7b2c\u4e94\u671f\u597d\u58f0\u97f3\u4f60\u652f\u6301\u54ea\u4f4d\u5b66\u\uff1f\u53c2\u4e0e&a
href="\/n\/中国好声音"
usercard="name=\u4e2d\u56fd\u597d\u58f0\u97f3"
&@\u4e2d\u56fd\u597d\u58f0\u97f3&\/a&
\u5fae\u535a\u4eba\u6c14\u8c03\u67e5\uff0c\u&a
href="\/n\/中国好声音"
usercard="name=\u4e2d\u56fd\u597d\u58f0\u97f3"
&@\u4e2d\u56fd\u597d\u58f0\u97f3&\/a&
&a href="\/n\/洁丽雅"
usercard="name=\u6d01\u4e3d\u96c5"
&@\u6d01\u4e3d\u96c5&\/a&
\u5e76\u8f6c\u53d1\u672c\u5fae\u535a&a
href="\/n\/三个好友" usercard="name=\u4e09\u4e2a\u597d\u53cb"
&@\u4e09\u4e2a\u597d\u53cb&\/a&\uff0c\u\u9009\u51fa\u6bcf\u671f\u8282\u76ee\u4e2d\u4f60\u652f\u\u5b66\u\ua\u4f1a\u6d3b\u52a8\u\u4e3d\u96c5\u9001\u51fa\u\u\u793c\u5305\uff01\u6bcf\u\u51fa\u4e00\u4efd\u54e6\uff01\u6d3b\u52a8\u65f6\u95f4\uff1a\u\u8d77\u81f39\ue5\uff01\u8fd8\u4e0d\u8d76\u5feb\u884c\u52a8\uff01&a
title="http:\/\/vote.weibo.com\/vid=1940529"
href="http:\/\/t.cn\/zWla0Z7" target="_blank"
action-data="title=查看来源&short_url=http:\/\/t.cn\/zWla0Z7&full_url=http://vote.weibo.com/vid=1940529&type=5"
action-type="feed_list_third_rend"
&http:\/\/t.cn\/zWla0Z7&span
class="feedico_vote"
title="\u"&&\/span&&\/a&
&\/em&&\/p&\n\t\t\n\t\n&ul
class="piclist"
node-type="feed_list_media_prev"&\n\t&li&\n\t\t&div
class="chePicMin W_bgcolor_mini bigcursor"
action-type="feed_list_media_img"
suda-uatrack="key=smart_feed&value=zoomin_pic"&&img
class="bigcursor" node-type="feed_list_media_bgimg"
src="http:\/\/ww3.sinaimg.cn\/thumbnail\/a806f328jw1dvyl2kxf4zj.jpg"
alt=""\/&&img style="left: 39.5
top: 52 display:"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/loading.gif"
class="loading_gif"&&\/div&\n\t&\/li&\n\t\t&li&\n\t\t\t&img
src="http:\/\/ww2.sinaimg.cn\/large\/a806f328jw1dvrz9cn45nj.jpg"
class="bigcursor"
action-data="title=查看来源&short_url=http:\/\/t.cn\/zWla0Z7&full_url=http://vote.weibo.com/vid=1940529&type=5"
action-type="feed_list_third_rend"\/&\n\t\t&\/li&\n\t&!--\u\u63a5\u5165app--&\n\t&\/ul&\n\t&dl
class="comment W_textc W_linecolor W_bgcolor" style="display:
node-type="feed_list_media_disp"&&\/dl&\n\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&url=http:\/\/weibo.com\/\/yxqTost7x&mid=5127&name=\u4e2d\u56fd\u597d\u58f0\u97f3&uid=&domain=&pid=a806f328jw1dvyl2kxf4zj"
&\u8f6c\u53d1(25)&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba(19)&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqTost7x" title=" 16:05"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&8\uf\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.pp.cc\/time\/"
rel="nofollow"&\u76ae\u76ae\u65f6\ua&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=5127&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\u4e3e\u62a5&\/a&\n\t\t&\/em&\n\t\t&\/p&\n\t\t&div
node-type="feed_list_repeat" class="repeat W_textc W_linecolor
W_bgcolor"
style="display:"&&\/div&\n\t&\/dd&\n\t&dd
class="clear"&&\/dd&\n\t&\/dl&\t\t&dl
diss-data="group_source=group_all" class="feed_list
W_linecolor" mid="6723"
action-type="feed_list_item"
class="face"&\n\t\t&a
href="\/manhuaguaishou"
title="\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d"&&img
usercard="id="
title="\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d" alt=""
width="50" height="50"
src="http:\/\/tp1.sinaimg.cn\/\/50\/\/0"\/&&\/a&\n\t&\/dt&\n\t&dd
class="content"&\n\t\t&a
href="javascript:;"
suda-data="key=close_feed&value=close"
action-data="is_new_filter=1&uid=&nickname=\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d&gender=f&mid=6723&appname=\u76ae\u76ae\u65f6\ua&isactive=1&mblogsorttype=1&member_type=0"
title="\u5c55\u5f00\u5c4f\u853d\u"
action-type="feed_list_shield" class="W_blkarrow W_bglinka
hover"&&cite
class="arr_m"&&\/cite&&\/a&\t\t\t&p
node-type="feed_list_content"&\n\t\t&a
nick-name="\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d"
title="\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d"
href="\/manhuaguaishou"
title="\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d"
usercard="id="&\n\t\t\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d&\/a&\uff1a&em&\u8c22\u8c22\u4f60\u\u6211\uff01(
\u\u4eec\u7f51\u7ad9\u770b24\u5c0f\u65f6\u6700\u7cbe\u5f69\u\uff01&a
title="http:\/\/gifguaishou.com\/groups\/25\/hottest\/day"
href="http:\/\/t.cn\/zWvAqn7" target="_blank" mt="url"
action-type="feed_list_url"&http:\/\/t.cn\/zWvAqn7&\/a&\uff09&\/em&&\/p&\n\t\t\n\t\n&ul
class="piclist"
node-type="feed_list_media_prev"&\n\t&li&\n\t\t&div
class="chePicMin W_bgcolor_mini bigcursor"
action-type="feed_list_media_img"
suda-uatrack="key=smart_feed&value=zoomin_pic"&&img
class="bigcursor" node-type="feed_list_media_bgimg"
src="http:\/\/ww2.sinaimg.cn\/thumbnail\/938a7ac0jw1dvykxupgw8g.gif"
alt=""\/&&img style="left: 39.5
top: 52 display:"
src="http:\/\/img.t.sinajs.cn\/t4\/style\/images\/common\/loading.gif"
class="loading_gif"&&\/div&\n\t&\/li&\n\t&\/ul&\n\t&dl
class="comment W_textc W_linecolor W_bgcolor" style="display:
node-type="feed_list_media_disp"&&\/dl&\n\t&p
class="info W_linkb
W_textb"&\n\t\t&span&\n\t\t\n\t\t&a
suda-data="key=smart_feed&value=repost_by_genius"
href="javascript:void(0);" action-type="feed_list_forward"
action-data="allowForward=1&url=http:\/\/weibo.com\/\/yxqRy7xpp&mid=6723&name=\u8da3\u56fe\u767e\u79d1\u4e0eGIF\u602a\u517d&uid=&domain=manhuaguaishou&pid=938a7ac0jw1dvykxupgw8g"
&\u8f6c\u53d1(5)&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=fav_by_genius"
href="javascript:void(0);" diss-data="fuid="
action-type="feed_list_favorite"
&\u6536\u85cf&\/a&&i
class="W_vline"&|&\/i&\n\t\t&a
suda-data="key=smart_feed&value=comment_by_genius"
href="javascript:void(0);" action-type="feed_list_comment"
action-data="ouid="&\u8bc4\u8bba(6)&\/a&\n\t\t&\/span&\n\t\t&a
href="\/\/yxqRy7xpp" title=" 16:00"
date="0" class="date"
node-type="feed_list_item_date"
suda-uatrack="key=smart_feed&value=details_feed"&13\uf\u524d&\/a&
\u6765\u81ea&a target="_blank"
href="http:\/\/weibo.pp.cc\/time\/"
rel="nofollow"&\u76ae\u76ae\u65f6\ua&\/a&\n\t\n\t\t&em
class="hover"&\n\t&em
class="W_vline"&|&\/em&&\n\t&a
class="W_linkb" href="javascript:void(0);"
onclick="javascript:window.open('http:\/\/service.account.weibo.com\/reportspam?rid=6723&type=1&url=http://weibo.com/ronmf&bottomnav=1&wvr=4',
'newwindow', 'height=700, width=550, toolbar =yes, menubar=no,
scrollbars=yes, resizable=yes, location=no,
status=no');"&\}

我要回帖

更多关于 到楼上 qlsbbs.info 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信