我正在尝试使用 xsl 来获取以下 html
<input type="button" value="line1 line2">
我尝试了以下
<input type="button">
<xsl:attribute name="value">
<xsl:value-of select="'line1 line2'" />
</xsl:attribute>
</input>
但它不工作。
编辑:由于我的 IDE (LANSA) xsl 编辑器,它可能无法正常工作。我最终使用了以下 xsl
<input type="button">
<xsl:attribute name="value"> line1
line2</xsl:attribute>
</input>
生成以下html
<input type="button" value="line1
line2">