本文共 765 字,大约阅读时间需要 2 分钟。
KindEditor 编辑器 指定初始化模块、
有时候,我们不需要那么多功能。 因此,我们就可以通过指定某些功能模块进行显示。
案例代码如下:
var editor; KindEditor.ready(function(K) { var editor = K.create('textarea[name="Description"]', { uploadJson : '<%=basePath%>kingedit/imageUpload', items : [ 'source', 'undo', 'redo', 'preview', 'print', 'cut', 'copy','paste','wordpaste', 'fullscreen', 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist', '|', 'emoticons', 'image', 'link', 'table', 'baidumap'] }); });
items参数如下,
data-name 参数名
title 是功能模块备注
本文转自yjflinchong 51CTO博客,原文链接:http://blog.51cto.com/yjflinchong/1164953,如需转载请自行联系原作者