2.struts配置
3. jsp上的页面
<script src="kindeditor/lang/zh_CN.js">
<script>
var editor1;
KindEditor.ready(function(K) {
editor1 = K.create('textarea[name="content"]', {
resizeType : 1,
uploadJson : 'uploadimage',
//uploadJson : 'kindeditor/jsp/upload_json.jsp',
//fileManagerJson : 'kindeditor/jsp/file_manager_json.jsp',
allowPreviewEmoticons : true,
allowImageUpload : true,
minWidth : '500px',
items : [
'source','wordpaste','preview',
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image', 'link','baidumap']
});
});