简单的问题,在我的 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>