kindeditor加入方法

Posted 小白827

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kindeditor加入方法相关的知识,希望对你有一定的参考价值。

1.editor文件夹拷进来

2. editor里jsp子文件夹里找到几个jar拷贝到网站的web-app里的lib下

3.  网页里

 

head里加个这个

<link rel="stylesheet" href="editor/themes/default/default.css" />
    <link rel="stylesheet" href="editor/plugins/code/prettify.css" />
    <script charset="utf-8" src="editor/kindeditor-all.js"></script>
    <script charset="utf-8" src="editor/lang/zh-CN.js"></script>
    <script charset="utf-8" src="editor/plugins/code/prettify.js"></script>
    <script>
        KindEditor.ready(function(K) {
            var editor1 = K.create(textarea[name="content1"], {
                cssPath : editor/plugins/code/prettify.css,
                uploadJson : editor/jsp/upload_json.jsp,
                fileManagerJson : editor/jsp/file_manager_json.jsp,
                allowFileManager : true,
                afterCreate : function() {
                    var self = this;
                    K.ctrl(document, 13, function() {
                        self.sync();
                        document.forms[example].submit();
                    });
                    K.ctrl(self.edit.doc, 13, function() {
                        self.sync();
                        document.forms[example].submit();
                    });
                }
            });
            prettyPrint();
        });
    </script>

 

body里加个显示的东西

 

  <textarea name="content1" cols="100" rows="8" style="width:700px;height:200px;visibility:hidden;"><%=htmlspecialchars(newscontent)%></textarea>  

html后面加一个

 

<%!
private String htmlspecialchars(String str) {
    str = str.replaceAll("&", "&amp;");
    str = str.replaceAll("<", "&lt;");
    str = str.replaceAll(">", "&gt;");
    str = str.replaceAll("\"", "&quot;");
    return str;
}
%>

 

 

其中注意head标签里   “var editor1 = K.create(‘textarea[name="content1"]‘, {”       这个name值同你的textarea显示部分对应

 

以上是关于kindeditor加入方法的主要内容,如果未能解决你的问题,请参考以下文章

kindeditor 加入七牛云上传

KindEditor得不到textarea值的解决方法

kindeditor 手机端使用方法 使用kindeditor 4.1.7

django admin富文本编辑kindeditor

KindEditor - 富文本编辑器 - 使用+上传图片

再jsp页面中使用kindeditor 的方法