假设我有如下的 xml,并且我想将标签Cell的模板与属性aid5:cellstyle="hilite_white" 匹配
我如何在 XSLT 模板中做到这一点,因为我无法选择具有特殊字符的属性,例如:?
<table>
<Cell aid:table="cell" aid5:cellstyle="hilite_white" aid:crows="1" aid:ccols="1" aid:ccolwidth="112" />
</table>
@jim:这是我尝试的
<xsl:template match="Cell[@aid5:cellstyle='hilite_white']">
<xsl:value-of select="local-name()" />
</xsl:template>