【发布时间】:2014-07-24 15:47:54
【问题描述】:
博:
class Apple {
private String appleName;
private String appleBenefits;
}
在 jsp 中,我使用 jquery 编辑器插件 (cleditor.js) 输入字段 "appleBenefits" from the jsp. 的值
String appleBenefits = "<ul><li> An apple a day keeps the <hr><font color="ff0000">Doctor away</li></ui><br>"
但是,当我需要将其值存储在 DB 中时,我需要将其存储为:
"An apple a day keeps the Doctor away"
如何在 java 中做到这一点?
【问题讨论】:
标签: java javascript cleditor