zoukankan      html  css  js  c++  java
  • Ckeditor自定义配置 分组

    2. 其中 MyToolbar 就是自訂的toolbar,將常用到的toolbar設定在config.js後,再來就是在我要嵌入頁面中指定我自訂的 toolbar 名稱即可,也就是原本只能使用預設的Full或Basic,現在也可以使用我自訂的MyToolbar名稱了,如下:

    <textarea cols=’80′ id=’toolbar_MyToolbar’ name=’toolbar_MyToolbar’ rows=’10′>丫 忠的伺服器-CKEditor toolbar修改-自訂toolbar</textarea>

    <script type=’text/javascript’>
    CKEDITOR.replace( ‘toolbar_MyToolbar’,{toolbar : ‘MyToolbar‘});
    </script>

    此時你可能會需要想知道 toolbar 中每一個英文對映到的功能,丫忠就把它整理下來吧,方便有需要的人做個對照囉!

    ‘Source’:原始碼

    ‘Save’:儲存
    ‘NewPage’:開新檔案
    ‘Preview’:預覽
    ‘Templates’:樣版

    ‘Cut’:剪下
    ‘Copy’:複製
    ‘Paste’:貼上
    ‘PasteText’:貼為文字格式
    ‘PasteFromWord’:自 word 貼上
    ‘Print’:列印
    ‘SpellChecker’:拼字檢查
    ‘Scayt’:即時拼寫檢查

    ‘Undo’:復原(上一步)
    ‘Redo’:重複(下一步)
    ‘Find’:尋找
    ‘Replace’:取代
    ‘SelectAll’:全選
    ‘RemoveFormat’:清除格式

    ‘Form’:表單
    ‘Checkbox’:核取方塊
    ‘Radio’:選項按鈕
    ‘TextField’:文字方塊
    ‘Textarea’:文字區域
    ‘Select’:選單
    ‘Button’:按鈕
    ‘ImageButton’:影像按鈕
    ‘HiddenField’:隱藏欄位

    ‘Bold’:粗體
    ‘Italic’:斜體
    ‘Underline’:底線
    ‘Strike’:刪除線
    ‘Subscript’:下標
    ‘Superscript’:上標

    ‘NumberedList’:編號清單
    ‘BulletedList’:項目清單
    ‘Outdent’:減少縮排
    ‘Indent’:增加縮排
    ‘Blockquote’:引用文字

    ‘JustifyLeft’:靠左對齊
    ‘JustifyCenter’:置中
    ‘JustifyRight’:靠右對齊
    ‘JustifyBlock’:左右對齊

    ‘Link’:插入/編輯超連結
    ‘Unlink’:移除超連結
    ‘Anchor’:插入/編輯錨點

    ‘Image’:插入影像
    ‘Flash’:插入Flash
    ‘Table’:插入表格
    ‘HorizontalRule’:插入水平線
    ‘Smiley’:插入表情
    ‘SpecialChar’:插入特殊符號
    ‘PageBreak’:插入分頁符號

    ‘Styles’:樣式
    ‘Format’:格式
    ‘Font’:字體
    ‘FontSize’:大小

    ‘TextColor’:文字顏色
    ‘BGColor’:背景顏色

    ‘Maximize’:最大化
    ‘ShowBlocks’:顯示區塊
    ‘About’:關於CKEditor

  • 相关阅读:
    Linux操作系统 (RHEL 7/CentOS 7)
    (OK) 运行cBPM in Fedora23
    (OK) 运行cBPM—Fedora23
    (OK) Install codeblocks_16.01 on Fedora23
    (OK) Fedora23——Docker——CORE—testing
    (OK) CORE nodes access Internet—虚拟节点访问互联网—commands
    (OK-half) Fedora23——Docker——CORE—testing
    (OK) running imunes in Fedora 23
    (OK-HALF) To Find a Rogue DHCP Server—tcpdump/dhclient—nmap
    (OK) shell script—Find a Rogue DHCP Server—tcpdump/dhclient—nmap
  • 原文地址:https://www.cnblogs.com/cnsanshao/p/2110400.html
Copyright © 2011-2022 走看看