任何幫助非常讚賞這一點。XML - 幫助刪除節點發布
我想從外部xml文件(我使用xslt進行了樣式化)中的某個源中刪除某些節點。這裏是飼料:http://www.wcwg.info/feeds/localevents.aspx?a=00392&p=CM159EH&m=20。
我想刪除的節點是:
地方活動發佈到WhereCanWeGo.com.00392CM15 9EH31 /一千〇七分之一十/1010001111111111111111111031分之11 月 2010http://www.wherecanwego.com /events/signin.aspxww.wherecanwego.com/events/signin.aspx
有沒有人可以指導我如何刪除這些初始節點(參數)?他們是郵政編碼,帳號,飼料網址等。
我非常渴望完成這個任務,但它是最後的障礙!提前的人誰回答感謝...
樣式表(片段)
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="item">
<div class="local_events">
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="Venue"/>
<xsl:apply-templates select="Times"/>
<xsl:apply-templates select="Dates"/>
<xsl:apply-templates select="DetailsURL"/>
</div><div style="height:1px;border-bottom:1px dotted #cfcfcf;"></div>
</xsl:template>
<xsl:template match="title">
<h2><a class="title" target="_blank" rel="nofollow" href="{../DetailsURL}"><xsl:value-of select="."/></a></h2>
</xsl:template>
<xsl:template match="Venue">
<span>Location: </span>
<xsl:value-of select="."/>
<br />
</xsl:template>
<xsl:template match="Times">
<span>Details: </span>
<xsl:value-of select="."/>
<br />
</xsl:template>
<xsl:template match="Dates">
<span>Dates: </span>
<xsl:value-of select="."/>
</xsl:template>
<xsl:template match="DetailsURL">
<a style="font-weight:normal;margin-left:0.5em;" target="_blank" rel="nofollow" href="{.}"><xsl:text>Full details...</xsl:text></a>
</xsl:template>
嗨馬丁,當然是謝謝你問 - 我不想傷害任何人,所以儘量保持簡潔!這裏是我的XSLT,是的,我很想知道如何確保頂級子節點(上面的'item')沒有發佈:我現在似乎不能在這裏發佈他的代碼!我會看到我怎麼可以鏈接到它... – sue 2010-11-02 13:10:48