0

简单的问题,在我的 xslt 中,我想在表格中打印属性的固定值,如果将其放在标签中,我会得到相同的结果,但我想做好吗?谁能告诉我怎么做?谢谢。
在我的 doc.xml <unit_price currency="$"> 4.00 </unit_price>

在我的 doc.xslt

 <table>
 <xsl:for-each select="TotalProducts/products">
 <tr>
 <td>
    <xsl:value-of select="unit_price"/>
    <label> $ </label>
 </td>
4

1 回答 1

1

如果要显示 XML 中的属性,可以使用 xpath 选择器@。因此,您可以将label行更改为以下内容。

<xsl:value-of select="unit_price/@currency" />
于 2013-03-19T13:30:47.563 回答