当前位置:在线工具>编辑器>KindEditor>KindEditor Get Started
手机访问

KindEditor Get Started


KindEditor
GitHubhttps://github.com/kindsoft/kindeditor
LicenseGNU Lesser General Public License v2.1
What is KindEditor?
KindEditor is a lightweight, Open Source(LGPL), cross browser, web based WYSIWYG HTML editor. KindEditor has the ability to convert standard textareas to rich text editing.
入门部署
<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>KindEditor demo</title>
</head>
<body>
    <textarea name="editor" style="width:700px;height:100px;"></textarea>
    <!-- 编辑器源码文件 -->
    <script src="https://cdn1.box3.cn/assets/kindeditor/4.1.12/kindeditor-all-min.js"></script>
    <!-- 实例化编辑器 -->
    <script type="text/javascript">
        KindEditor.ready(function(K) {
            window.editor = K.create('textarea', {
                allowFileManager : true,
                langType : 'zh-CN',
                autoHeightMode : true
            });
            // 获取编辑器内容
            //window.editor.html()
            // 修改编辑器内容
            // window.editor.html("新内容")
        });
    </script>
</body>
</html>
如果你喜欢本站,记得收藏哟。box3.cn
box3.cn