我正在尝试让xsl通过html将值放入文本框...类似
Name : <input id="Name" type="text" value=<xsl:value-of select="something"/> />
但这不起作用(没想到) - 有没有办法使这项工作?
答案 0 :(得分:3)
有两种方法可以做到这一点。正常的方式:
<input id="Name" type="text">
<xsl:attribute name="value">
<xsl:value-of select="something"/>
</xsl:attribute>
</input>
快捷方式:
<input id="Name" type="text" value="{something}"/>