struts标签内换行空格被编码不显示:
1、前台jsp添加属性 escape="false"
即:escape="false"/>
2、后台action中,showtext 将空格换行符替换。
空格:showtext =showtext.replace(" ", " ");
换行:showtext = ""+showtext+"
;
showtext = showtext.replace("\r\n", "");
jsp 页面可以这么写
<s:propertyvalue="要显示的内容(string)" escape="false"/> |
property属性的背景知识:
阅读(6720) | 评论(0) | 转发(0) |