如何在HTML按钮标记的value属性旁边使用<xsl:value-of select='fullName'/>
?
<xsl:for-each select="people/person">
<tr>
<td>
<button type='button' class='mybutton' name='users'
value="<xsl:value-of select='fullName'/>">My Buttons
</button>
</td>
</tr>
</xsl:for-each>
使用此代码我收到解析错误,我不知道如何更改标记。有什么想法吗?
答案 0 :(得分:2)
您可以使用attribute value template代替。
<button type="button" class="mybutton" name="users" value="{fullName}">