不知道這是CKEDITOR的一項新功能,但只是想分享我的解決方案(如果它有助於現在的人找這個):
$("textarea.youreditor").ckeditor
(
{
customConfig: "/path/to/custom/config.js"
}
);
...和我的配置是這樣的(簡單複製默認的config.js:
CKEDITOR.editorConfig = function(config)
{
config.toolbar_Full =
[
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'] },
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] }
];
};
**我跨在這裏發佈我的解決方案:How do I pass in config info to CKEditor using the jQuery adapter?
+1,雖然它是一個相當糟糕的設計選擇把回調作爲第一個參數。這不是你的錯。 ;) – DarthJDG 2011-05-24 23:58:54
謝謝,作品,3分鐘後會接受答案,當倒數時間冷卻:)) – 2011-05-25 00:01:20