ckeditor就是fckeditor,在發布乙個新版本的時候,把自己的名字都改了,不要"f"。
做法:1、在ckeditor的plugins資料夾下,建立新資料夾"addmap",這個名字可以自定義,這個名字是我專案中用的名字
2、在addmap資料夾下,放一張gif"map.gif",用來作圖示用的。
3在addmap資料夾下,新建"plugin.js",編輯這個js檔案,我們這裡的**是:
複製** **如下:
(function() else
if(data!=null&&data!='')}},
b = 'addmap';
ckeditor.plugins.add(b, );
}});
})();
4、回到ckeditor的根目錄,編輯config.js
複製** **如下:
ckeditor.editorconfig = function( config )
{// define changes to default configuration here. for example:
config.language = 'zh-cn';
= '#aadc6e';
//字型.
config.font_names = '宋體;楷體_gb2312;新宋體;黑體;隸書;幼圓;微軟雅黑;arial;comic sans ms;courier new;tahoma;times new roman;verdana;';
//工具按鈕
config.*******=
[ ['source','-','preview'],
['cut','copy',iouaywjx'paste','pastetext','pastefromword','-','print','link','unlink','anchor'],
['undo','redo','-','find','re程式設計客棧place','-','selectall','removeformat'],
['addmap']
];config.extraplugins = 'addmap';
5、測試
本文標題: ckeditor外掛程式開發簡單例項
本文位址:
CKeditor外掛程式開發流程
1.放在多檔案中 第一步 config.js中 config.extraplugins 外掛程式名稱 註冊外掛程式,extraplugins只允許出現一次,你如果之前有新增別的外掛程式,那麼用逗號分隔第二步 plugins資料夾下新建 外掛程式名稱 資料夾 第三步 1 在plugins 外掛程式名稱...
CKEditor外掛程式編寫
4.外掛程式編寫流程和例項 1 在plugins目錄新建資料夾apage,在apage下新建檔案 plugin.js 內容如下 ckeditor.plugins.add apage 2 在 中加一項page,並在配置中宣告新增擴充套件外掛程式 config.extraplugins apage 有兩...
ckeditor外掛程式的使用
1 呼叫 ckeditor.replace content add 括號裡直接是你命名的id name的名稱,表示用ckeditor替代你的id name 得到頁面屬性值 ckeditor.instances.content add.getdata 清空重置引數 ckeditor.instances...