簡単な質問です。私の 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>