使用下载的模板皮肤自定义 CKEditor 3.0
如何定制CKEditor 3.0的皮肤?我下载了一个新皮肤,现在有这个 JavaScript 为其提供支持:
CKEDITOR.replace( 'pageBody',
{
toolbar :
[
['Format'],
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', '-', 'About']
],
});
我想在我的 CMS 上安装一个 WordPress 编辑器,即 TinyMCE,但它太复杂了。所以我转向 CKEditor,想让我下载的皮肤看起来更好。
How can I customize the skin for CKEditor 3.0? I downloaded a new skin and I have this JavaScript powering it at the moment:
CKEDITOR.replace( 'pageBody',
{
toolbar :
[
['Format'],
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', '-', 'About']
],
});
I wanted to have a WordPress editor on my CMS, which is TinyMCE, but it's way complicated. So I turned to CKEditor and want to make it look better with a skin I downloaded.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在结束
],
下面添加:所以它最终会像这样:
Underneath the closing
],
add:So it will end up like this: