欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

kindeditor编辑器的使用

程序员文章站 2022-04-13 13:09:28
...

kindeditor编辑器的使用

js文件

<script src="../../../lib/editor/kindeditor.js" type="text/javascript"></script>

容器

<input type="text" id="info" value="" class="layui-input" />

js代码

<script type="text/javascript">
//初始化编辑器
var editor = KindEditor.create('#info', {
    width: '100%',
    height: '350px',
    filterMode: false, //默认不过滤HTML
    resizeType: 1,
    uploadJson: '../../../tools/upload_ajax.ashx?action=EditorFile&IsWater=1',
    fileManagerJson: '../../../tools/upload_ajax.ashx?action=ManagerFile',
    allowFileManager: true,
    afterBlur: function () { this.sync(); }
});
$("#info").val(editor.html());
</script>
相关标签: kindeditor