preserve space元素

<xsl:preserve-space> 元素用於定義保留空白的元素。

基本介紹

  • 中文名:preserve space元素
  • 用於:定義保留空白的元素
  • 定義:刪除空白的元素
  • 注釋:保留空白是默認的設定
正文,定義和用法,語法,實例,

正文

定義和用法

<xsl:strip-space> 元素用於定義刪除空白的元素。
注釋:保留空白是默認的設定,所以只有當使用 <xsl:strip-space> 元素使才有必要使用 <xsl:preserve-space> 元素。
注釋:<xsl:preserve-space> 元素和 <xsl:strip-space> 元素都是頂層元素(top-level element)。

語法

<xsl:preserve-space elements="list-of-element-names"/> <xsl:strip-space elements="list-of-element-names"/>

實例

例子
在本例中,我們為 title 和 artist 元素預留了空白節點,並從 country、company、price 以及 year 元素刪除了空白節點:
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3 .org/1999/XSL/Transform"> <xsl:strip-space elements="country company price year" /> <xsl:preserve-space elements="title artist" /> <xsl:template match="/"> <html> <body> <xsl:for-each select="catalog/cd"> <p> <xsl:value-of select="title" /><br /> <xsl:value-of select="artist" /><br /> <xsl:value-of select="country" /><br /> <xsl:value-of select="company" /><br /> <xsl:value-of select="price" /><br /> <xsl:value-of select="year" /> </p> </xsl:for-each> </body> </html> </xsl:template> </xsl:stylesheet>

相關詞條

熱門詞條

聯絡我們