此元素不允许XSLT属性匹配

时间:2013-11-12 15:02:27

标签: xaml xslt

我在除root之外的所有这些元素XAML上都出现Attribute match is not allowed on this element错误。我想我错过了关于语法的一些内容......

<?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
       <xsl:output omit-xml-declaration="yes" indent="yes" />
       <xsl:strip-space elements="*" />
               <xsl:output method="html"/>
        <xsl:template match="/">  
            <html>
                <body>
                   <xsl:apply-templates match="/Table"/>
                    <xsl:apply-templates match="/Paragraph"/>
                    </body>
            </html>
            </xsl:template>

            <xsl:template match="Table">
                <table>
                    <xsl:apply-templates match="TableRowGroup"/>
                </table>
            </xsl:template>


            <xsl:template match="TableRowGroup">
                    <xsl:apply-templates match="TableRow"/>
            </xsl:template>


            <xsl:template match="TableRow">
                <tr>
                    <xsl:apply-templates match="TableCell"/>
                </tr>
            </xsl:template>


            <xsl:template match="TableCell">
                <td>
                </td>
            </xsl:template>

            </xsl:stylesheet>

1 个答案:

答案 0 :(得分:1)

使用<xsl:apply-templates select="..."/>代替<xsl:apply-templates match="..."/>