在JSP中使用kindeditor编辑器
1. 下载编辑器
下载 KindEditor 最新版本,下载之后打开 examples/index.html 就可以看到演示。
下载页面: http://www.kindsoft.net/down.php
2. 下载编辑器
解压 kindeditor-x.x.x.zip 文件,将所有文件上传到您的网站程序目录里,例如:
http://您的域名/kindeditor/
3. 导入所需的jar文件
在解压的kindeditor文件中,kindeditor/jsp/lib/可以找到这些jar文件,将所需的导入即可。
4. 修改JSP文件
在需要显示编辑器的jsp文件中引入两个js文件
<script charset="utf-8" src="${pageContext.request.contextPath }/kindeditor/kindeditor.js"></script>
<script charset="utf-8" src="${pageContext.request.contextPath }/kindeditor/lang/zh_CN.js"></script>
在需要显示编辑器的textarea下面加入下面代码
<script>
KindEditor.ready(function(K) {
window.editor = K.create('#textarea的id');
});
</script>
5. 修改JSP文件
最后记住,在提交的时候需要加入下面这段代码
this.editor.sync();
否则提交的数据无法保存,且还是显示原来的数据。