站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
KindEditor/初始化参数
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
{{KindEditor导航}} *'''width''' [[编辑器]]的宽度,可以设置px或%,比textarea输入框样式表宽度优先度高。 数据类型: String; 默认值: textarea输入框的宽度 示例: <pre> K.create('#id', { width : '700px' }); </pre> *'''height''' 编辑器的高度,只能设置px,比textarea输入框样式表高度优先度高。 数据类型: String; 默认值: textarea输入框的高度 *'''minWidth''' 指定编辑器最小宽度,单位为px。 数据类型: Int; 默认值: 650 *'''items''' 配置编辑器的工具栏,其中”/”表示换行,”|”表示分隔符。 数据类型: Array; 默认值: <pre> [ 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'cut', 'copy', 'paste', 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript', 'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/', 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'map', 'code', 'pagebreak', 'link', 'unlink', '|', 'about' ] </pre> *'''noDisableItems''' designMode 为false时,要保留的工具栏图标。 数据类型: Array; 默认值: [‘source’, ‘fullscreen’] *'''filterMode''' true时过滤[[HTML]][[代码]],false时允许输入任何代码。 数据类型: Boolean; 默认值: false *'''htmlTags''' 指定要保留的HTML标记和属性。Object的key为HTML[[标签]]名,value为HTML属性数组,”.”开始的属性表示style属性。 数据类型: Object; 默认值: <pre> { font : ['color', 'size', 'face', '.background-color'], span : [ '.color', '.background-color', '.font-size', '.font-family', '.background', '.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.line-height' ], div : [ 'align', '.border', '.margin', '.padding', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.background', '.font-style', '.text-decoration', '.vertical-align', '.margin-left' ], table: [ 'border', 'cellspacing', 'cellpadding', 'width', 'height', 'align', 'bordercolor', '.padding', '.margin', '.border', 'bgcolor', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.background', '.width', '.height' ], 'td,th': [ 'align', 'valign', 'width', 'height', 'colspan', 'rowspan', 'bgcolor', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.background' ], a : ['href', 'target', 'name'], embed : ['src', 'width', 'height', 'type', 'loop', 'autostart', 'quality', '.width', '.height', 'align', 'allowscriptaccess'], img : ['src', 'width', 'height', 'border', 'alt', 'title', '.width', '.height'], 'p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : [ 'align', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.background', '.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.text-indent', '.margin-left' ], pre : ['class'], 'hr,br,tbody,tr,strong,b,sub,sup,em,i,u,strike' : [] } </pre> *'''wellFormatMode''' true时美化HTML数据。 数据类型: Boolean; 默认值: true *'''resizeType''' 2或1或0,2时可以拖动改变宽度和高度,1时只能改变高度,0时不能拖动。 数据类型: Int; 默认值: 2 *'''themeType''' 指定主题风格,可设置”default”、”simple”,指定simple时需要引入simple.css。 数据类型: String; 默认值: “default” 示例: <pre> <link rel="stylesheet" href="../themes/default/default.css" /> <link rel="stylesheet" href="../themes/simple/simple.css" /> <script charset="utf-8" src="../kindeditor.js"></script> <script charset="utf-8" src="../lang/zh_CN.js"></script> <script> var editor; KindEditor.ready(function(K) { editor = K.create('#editor_id', { themeType : 'simple' }); }); </script> </pre> *'''langType''' 指定语言,可设置”en”、”zh_CN”,需要引入lang/[langType].js。 数据类型: String; 默认值: “zh_CN” 示例: <pre> <link rel="stylesheet" href="../themes/default/default.css" /> <script charset="utf-8" src="../kindeditor.js"></script> <script charset="utf-8" src="../lang/en.js"></script> <script> var editor; KindEditor.ready(function(K) { editor = K.create('#editor_id', { langType : 'en' }); }); </script> </pre> *'''designMode''' 可视化模式或代码模式 数据类型: Boolean; 默认值: true *'''fullscreenMode''' true时加载编辑器后变成全屏模式。 数据类型: Boolean; 默认值: false *'''basePath''' 指定编辑器的根目录路径。 数据类型: String; 默认值: 根据kindeditor.js文件名自动获取 *'''themesPath''' 指定编辑器的themes目录路径。 数据类型: String; 默认值: basePath + ‘themes/’ *'''pluginsPath''' 指定编辑器的plugins目录路径。 数据类型: String; 默认值: basePath + ‘plugins/’ *'''langPath''' 指定编辑器的lang目录路径。 数据类型: String; 默认值: basePath + ‘lang/’ *'''minChangeSize''' undo/redo文字输入最小变化长度,当输入的文字变化小于这个长度时不会添加到undo记录里。 数据类型: String; 默认值: 5 *'''urlType''' 改变站内本地[[URL]],可设置”“、”relative”、”absolute”、”domain”。空为不修改URL,relative为相对路径,absolute为绝对路径,domain为带域名的绝对路径。 数据类型: String; 默认值: “” *'''newlineTag''' 设置回车换行标签,可设置”p”、”br”。 数据类型: String; 默认值: “p” *'''pasteType''' 设置粘贴类型,0:禁止粘贴, 1:纯文本粘贴, 2:HTML粘贴 数据类型: Int; 默认值: 2 *'''dialogAlignType''' 设置弹出框(dialog)的对齐类型,可设置”“、”page”,指定page时按当前页面居中,指定空时按编辑器居中。 数据类型: String; 默认值: “page” *'''shadowMode''' true时弹出层(dialog)显示阴影。 数据类型: Boolean; 默认值: true *'''useContextmenu''' true时使用右键菜单,false时屏蔽右键菜单。 数据类型: Boolean; 默认值: true *'''syncType''' 同步数据的方式,可设置”“、”form”,值为form时提交form时自动同步,空时不会自动同步。 数据类型: String; 默认值: “form” *'''indentChar''' wellFormatMode 为true时,HTML代码缩进字符。 数据类型: String; 默认值: “\t” *'''cssPath''' 指定编辑器iframe document的[[CSS]]文件,用于设置可视化区域的样式。 数据类型: String或Array; 默认值: 空 *'''cssData''' 指定编辑器iframe document的CSS数据,用于设置可视化区域的样式。 数据类型: String; 默认值: 空 *'''bodyClass''' 指定编辑器iframe document body的className。 数据类型: String; 默认值: “ke-content” *'''colorTable''' 指定取色器里的颜色。 数据类型: Array; 默认值: <pre> [ ['#E53333', '#E56600', '#FF9900', '#64451D', '#DFC5A4', '#FFE500'], ['#009900', '#006600', '#99BB00', '#B8D100', '#60D978', '#00D5FF'], ['#337FE5', '#003399', '#4C33E5', '#9933E5', '#CC33E5', '#EE33EE'], ['#FFFFFF', '#CCCCCC', '#999999', '#666666', '#333333', '#000000'] ] </pre> *'''afterCreate''' 设置编辑器创建后执行的回调函数。 数据类型: Function; 默认值: 无 *'''afterChange''' 编辑器内容发生变化后执行的回调函数。 数据类型: Function; 默认值: 无 *'''afterTab''' 按下TAB键后执行的的回调函数。 数据类型: Function; 默认值: 插入4个空格的函数 *'''afterFocus''' 编辑器聚焦(focus)时执行的回调函数。 数据类型: Function; 默认值: 无 *'''afterBlur''' 编辑器失去焦点(blur)时执行的回调函数。 数据类型: Function; 默认值: 无 *'''afterUpload''' 上传文件后执行的回调函数。 数据类型: Function; 默认值: 无 <pre> KindEditor.ready(function(K) { K.create('#id', { afterUpload : function(url) { alert(url); } }); }); </pre> *'''uploadJson''' 指定上传文件的[[服务器端]]程序。 数据类型: String; 默认值: basePath + ‘php/upload_json.php’ *'''fileManagerJson''' 指定浏览远程图片的服务器端程序。 数据类型: String; 默认值: basePath + ‘php/file_manager_json.php’ *'''allowPreviewEmoticons''' true时鼠标放在表情上可以预览表情。 数据类型: Boolean; 默认值: true *'''allowImageUpload''' true时显示图片上传按钮。 数据类型: Boolean; 默认值: true *'''allowFlashUpload''' true时显示[[Flash]]上传按钮。 数据类型: Boolean; 默认值: true *'''allowMediaUpload''' true时显示视音频上传按钮。 数据类型: Boolean; 默认值: true *'''allowFileManager''' true时显示浏览远程[[服务器]]按钮。 数据类型: Boolean; 默认值: false *'''fontSizeTable''' 指定文字大小。 数据类型: Array; 默认值: <pre> ['9px', '10px', '12px', '14px', '16px', '18px', '24px', '32px'] </pre> ==参考来源== *http://www.kindsoft.net/doc.php [[category:KindEditor|C]] {{KindEditor使用手册导航}}
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)
本页使用的模板:
模板:KindEditor使用手册导航
(
编辑
)
模板:KindEditor导航
(
编辑
)