KindEditor 3 5 1新增文章分頁教程

2021-05-24 04:46:03 字數 2071 閱讀 6292

解壓後開啟目錄下kindeditor.js檔案

1,找到

items : [

'source', '|', 'fullscreen', 'undo', 'redo', 'print', 'cut', 'copy', 'paste',

'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',

'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',

'superscript', '|', 'selectall', '-',

'title', 'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold',

'italic', 'underline', 'strikethrough', 'removeformat', '|', 'image',

'flash', 'media', 'advtable', 'hr', 'emoticons', 'link', 'unlink', '|', 'about'

],這個array為編輯器的工具欄,其中"-"表示換行,"|"表示分隔符。你可以把新增分頁按鈕放在任何乙個地方我是這樣放的(紅色部分為新增的**)

items : [

'source', '|', 'fullscreen', 'undo', 'redo', 'print', 'cut', 'copy', 'paste',

'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',

'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',

'superscript', '|', 'selectall', '-',

'title', 'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold',

'italic', 'underline', 'strikethrough', 'removeformat', '|', 'image',

'flash', 'media', 'advtable', 'hr', 'emoticons', 'link', 'unlink','|','page', '|', 'about'

],2,找到

ke.lang = ;

這部分為滑鼠停放在按鈕上顯示的文字,現在我們要給按鈕加文字,有的人可能會說我改完第一步重新整理後沒看到按鈕啊只有乙個空格,別急慢慢來,先加上文字我是這洋寫的(紅色部分為新增的**)

ke.lang = ;

ok 我們來第三部

3,找到

ke.plugin['hr'] =

};ke.plugin['print'] =

};這部分為在編輯區插入**的執行** 我們只需要在下面新增**,修改後為(紅色部分為新增的**)

ke.plugin['hr'] =

};ke.plugin['page'] = };

ke.plugin['print'] =

};至此kindeditor.js檔案修改完畢,下面我們來讓按鈕出現。。。

開啟目錄下skins資料夾下面的default.css樣式表檔案

找到.ke-icon-about

.ke-icon-plainpaste

.ke-icon-about

.ke-icon-page

.ke-icon-plainpaste

這個css規則只是呼叫了一張背景然後讓它做偏移,的位置在skins/default/下,檔名為default.gif這個裡有很多預設沒有用到的按鈕,我只是選擇了乙個,大家可以自由發揮呵呵

現在大家可以去重新整理下看看,按鈕是不是已經出來了

效果是這樣

KindEditor 編輯器 v3 5 1 修改版

修改說明 1 加入分頁符功能 2 修改tabcpgbser事件為程式設計客棧新增兩個全形空格,更符合中國人使用習慣 如圖,位址如下 kindeditor 3.5.1 zh cn kingeric.rar 有幾點意見及諮詢 1 複製wordcpgbser文件到編輯器中,如何過濾其格式 別跟我說使用 的...

php新增為kindeditor水印問題

改upload json.php檔案,首先在upload json.php檔案中新增水印函式 引數 groundimage 背景,即需要加水印的,暫只支援gif,jpg,png格式 waterpos 水印位置,有10種狀態,0為隨機位置 1為頂端居左,2為頂端居中,3為頂端居右 4為中部居左,5為中...

source insight 不能新增cc檔案

source insight是不錯的原始碼閱讀工具,不過今天看kfs原始碼時,發現它不能支援.cc檔案,注 cc檔案與.cpp檔案等價 解決的根本辦法 options document options 在 file filter 裡邊加上 cc 或者 options preferences lang...