博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS之kindeditor的用法简介
阅读量:4026 次
发布时间:2019-05-24

本文共 698 字,大约阅读时间需要 2 分钟。

## 解压Kindeditor的压缩包

## 前段页面(内嵌name为content的标签即可)

## js代码

var editor;KindEditor.ready(function(K) {	editor = K.create('textarea[name="content"]', {		newlineTag : "br", 		resizeType : 2,		allowPreviewEmoticons : true,		allowImageUpload : true,        minHeight:"100px",        autoHeightMode : false,		afterCreate : function() {			this.loadPlugin('autoheight');		},		items : [			'fullscreen', 'source' , 'table',			'insertfile', 'link' , 'image' , 'emoticons' , '|' , 'forecolor', 'hilitecolor', 'bold' ,'underline', 'removeformat', '|' ,			'justifyleft', 'justifycenter', 'justifyright', 'preview']	});});

## 获取输入框的内容

var data = editor.html();data = encodeURIComponent(data);

转载地址:http://wbvbi.baihongyu.com/

你可能感兴趣的文章
昨夜今晨最大八卦终于坐实——人类首次直接探测到了引力波
查看>>
如何优雅、机智地和新公司谈薪水?
查看>>
为什么读了很多书,却学不到什么东西?
查看>>
长文干货:如何轻松应对工作中最棘手的13种场景?
查看>>
如何确保自己的Mac数据安全呢?这里有四个“小秘诀”
查看>>
如何用好碎片化时间,让思维更有效率?
查看>>
第一性原理:戳中问题本质的人是怎么思考的?
查看>>
No.147 - LeetCode1108
查看>>
No.148 - LeetCode771
查看>>
No.174 - LeetCode1305 - 合并两个搜索树
查看>>
No.175 - LeetCode1306
查看>>
No.176 - LeetCode1309
查看>>
FE:http状态码
查看>>
No.182 - LeetCode1325 - C指针的魅力
查看>>
mac:移动python包路径
查看>>
mysql:sql create database新建utf8mb4 数据库
查看>>
mysql:sql alter database修改数据库字符集
查看>>
mysql:sql alter table 修改列属性的字符集
查看>>
mysql:sql drop table (删除表)
查看>>
mysql:sql truncate (清除表数据)
查看>>