富文本编辑器kindeditor的使用实战
程序员文章站
2022-07-02 22:31:25
...
废话不多说直接进入正题,kindeditor的官方文档中提供了压缩包的相关下载,地址如下:
kindeditor压缩包下载
将下载后的压缩包解压得到的文件夹引入到项目的webapp下
将如下代码添加到你想让富文本框出想在的地方(页面哦!!)
<textarea id="editor_id" name="content" style="width:700px;height:300px;">
</textarea>
随后书写jq代码
<script charset="utf-8" src="${app}/kindeditor/kindeditor.js"></script>
<script charset="utf-8" src="${app}/kindeditor/lang/zh-CN.js"></script>
<script>
(此处一定要用kindEditor来调用方法)
KindEditor.create('#editor_id',{
width : '100%',
height:'350px',
resizeType:0,
//langType : 'en'
//显示图片空间按钮
allowFileManager:true,
// 图片空间按钮的URL
fileManagerJson:'${app}/article/showImages',
//文件上传的url
uploadJson:'${app}/article/upload',
//指定后台接受的图片的名称
filePostName:'myFile',
afterBlur:function () {
this.sync();
}
});
</script>
kindEditor中方法有很多,具体使用细节可以查看官方文档
编辑器初始化参数
上一篇: promise的认识
下一篇: Promise的认识