0

I have a simple xml file like

<?xml version="1.0" encoding="UTF-8"?>
<tag>Funny</tag>
<tag>Hilarious</tag>
<tag>Stupid</tag>

I am having difficulty constructing a XSLT file without a parent node. Is it possible to do this?

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
 >
 <xsl:output method="html" indent="yes"/>

 <xsl:template match="/" >
<body>
  <xsl:apply-templates select ="tags/tag"/>
</body>
 </xsl:template>

 <xsl:template match="tag" >
  <li>
  <a>
    <xsl:attribute name="href">
      album.aspx/<xsl:value-of select="."  />
    </xsl:attribute>
    <xsl:value-of select="."/>
   </a>
 </li>

I have to enclose my xml with XML for this xslt to work.

4

1 に答える 1

1

私はそうは思わない。プロセッサは常に整形式の XML ドキュメントを検索します。XML に XSLT を適用する前に、XML を整形式にする必要があります。

于 2013-06-06T12:22:03.113 に答える