将样式表附加到 CKEditor 时出现问题
我有一个 config.js 文件,如下所示:
CKEDITOR.editorConfig = function( config )
{
config.stylesSet = 'custom:/themes/custom.js';
config.contentsCss = '/assets/css/master.css';
};
我可以在 CKEditor 的样式下拉列表中看到我在 custom.js 中定义的样式,但是当我将它们应用到 WYSIWYG 编辑器中的元素时,样式不会显示在编辑器中,但它们在发布条目时显示。我还缺少其他东西吗? :?
I've got a config.js file that looks like:
CKEDITOR.editorConfig = function( config )
{
config.stylesSet = 'custom:/themes/custom.js';
config.contentsCss = '/assets/css/master.css';
};
I can see the styles that I've defined in my custom.js in CKEditor's styles dropdown, but when I apply them to elements in the WYSIWYG editor, the styles don't show in the editor, but they do when the entry is published. Is there something else I'm missing? :?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能是错的,但我相信该路径与显示页面的 html(或 php)文件相关,而不是与 js 文件相关。
我使用 CKEditor,并且必须对图像执行此操作,但不能对 css 执行此操作。让我知道它是否有效。
I may be wrong but I believe that path is relevant to the html (or php) file displaying the page and not the js file.
I use CKEditor and had to do this with images but not css. let me know if it works.