我的问题是当我在我的 xsl 样式表中混合 html 元素时,我对生成的内容感到困惑,因为 XML 解析只是抱怨:
Error on line 1 column 1
SXXP0003: Error reported by XML parser: Premature end of file.
这是我的代码
<xsl:template match="myTemplate">
<xsl:variable name="fieldtype" select="Radio"/>
<td width="100px"><span style="word-wrap: break-word">
<xsl:value-of select="$fieldtype"/></span></td>
</xsl:template>
这会显示为
<td width="100px"><span style="word-wrap:break word">Radio</span></td>