1、去官网下载http://ckeditor.com/合适的版本,我用的是最新版,ckeditor_4.5.6_standard
2、将解压的文件夹复制到WebContent文件夹下(本人IDE的是Eclipse)
3、jsp页面引入
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/samples.css">
<script src="${pageContext.request.contextPath}/ckeditor/ckeditor.js"></script>
4、具体的引用字段
//class 和id 名字不要改
<textarea class="ckeditor" cols="30" id="editor1" name="pdesc" rows="80"></textarea>
注意:回显的时候<s:property escape="0" value="model.pdesc"/>一定要添加 escape="0"
该字段一般设置text类型或更大的数据类型
时间: 2024-10-18 16:20:40