我的问题是使用这个 CKEditor 插件:Java/JSP Struts2 中的“ http://code.google.com/p/struts2-jquery/wiki/CkeditorEditor ”。
我总是得到ubb代码(如[b][i]test[/i][/b]
),而不是html代码(如<b><i>test</i></b>
)。
我已经在网上搜索了几个小时的资源,但仍然找不到任何解决方案......很少有人使用这个插件,而且很少能找到资源......
我的 struts 配置和 ckeditor 工作正常。
我的代码:
<sjr:ckeditor
id="richtextEditor"
name="richtextEditor"
rows="8"
cols="80"
width="800"
uploads="false"
loadingText="Loading..."
toolbar="MyToolbar"
skin="kama"
dataType="html"
customConfig="/xxx/js/ckeditor.config.js"
/>
请帮忙~~