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>
上一篇: hibernate的延时(懒)加载异常
推荐阅读