0

我正在使用 struts 1.3 开发应用程序。我有需要将属性值表示为 html 文本的要求。我有一个名为 commentText 的属性,它是字符串类型,我正在使用打印属性值<bean:write>

<td width="8%"><span class="formlabel">
    <bean:message key="ui.jsp.dashboard.news.showNews.button.message" />
</td>
<td width="80%">
  :&nbsp;&nbsp;<bean:write name="record" property="commentText" />
</td>

如何将此纯文本表示为 html 文本?

欢迎任何建议,

谢谢

4

1 回答 1

0

如果它是一个简单的字符串类型的文本放在 span 标签之间

   <span>:&nbsp;&nbsp;<bean:write name="record" property="commentText" /></span>.

并且更好地使用JSTL

<c:out value="YourNormalStringHere" escapeXml="false"/>
于 2013-03-15T06:26:07.467 回答