xslt 1.0-希望使用xslt 1.0将div插入到html主体中



非常简单:我正在寻找一个简单的XSL来更改

    <body>
      ...
    </body>

    <body>
      ...
      <div>...</div>
    </body>
      <xsl:template match="body">
           <xsl:apply-templates />
           <div>...</div>
      </xsl:template>   
      <xsl:template match="*">
            <xsl:variable name="curTagName" select="name()"/>
            <xsl:element name="{$curTagName}">
                <!-- Walk through the attributes -->
                <xsl:apply-templates select="@*">
                    <xsl:sort select="name()"/>
                </xsl:apply-templates>
                <xsl:apply-templates/>
            </xsl:element>
        </xsl:template>
        <xsl:template match="@*">
            <xsl:variable name="curAttName" select="name()"/>
            <xsl:attribute name="{$curAttName}">
                <xsl:value-of select="."/>
            </xsl:attribute>
        </xsl:template>

相关内容

  • 没有找到相关文章

最新更新