Javascript CKEDITOR:单个页面上有多个外观

Javascript CKEDITOR:单个页面上有多个外观,javascript,ckeditor,Javascript,Ckeditor,我正在这样做: CKEDITOR.replace('entry-short_text',{ skin: 'Moono_blue,/ckeditor/Moono_blue/', }); CKEDITOR.replace('entry-full_text',{ skin: 'office2013,/ckeditor/office2013/', }); 集合的所有元素只有一个皮肤,最后列出(即office2013)。为什么会这样?CKEditor 4每页只允许一个皮肤。 在为v重新

我正在这样做:

CKEDITOR.replace('entry-short_text',{
    skin: 'Moono_blue,/ckeditor/Moono_blue/',
});
CKEDITOR.replace('entry-full_text',{
    skin: 'office2013,/ckeditor/office2013/',
}); 

集合的所有元素只有一个皮肤,最后列出(即office2013)。为什么会这样?

CKEditor 4每页只允许一个皮肤。
在为v重新设计时,在同一页面上加载多个皮肤的功能被删除。4.

您能提供html代码吗?