<xsl:template match="foo">
匹配null命名空间中的foo元素.
<xsl:template match="*">
匹配任何命名空间中的任何元素
我试过了:
xmlns:null="" ... <xsl:template match="null:*">
但为null命名空间声明前缀是违法的.
那么如何在null命名空间中匹配元素与任何名称?
<xsl:template match="foo">
匹配null命名空间中的foo元素.
<xsl:template match="*">
匹配任何命名空间中的任何元素
我试过了:
xmlns:null="" ... <xsl:template match="null:*">
但为null命名空间声明前缀是违法的.
那么如何在null命名空间中匹配元素与任何名称?