作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法将自定义配置文件添加到 grails 中的 ckeditor。
这是我的代码:
function applyEditor() {
try {
CKEDITOR.replace('editor1', {
customConfig : '../ckeditor/custom_config.js',
toolbarGroups : [ {"name" : "basicstyles",
"groups" : [ "basicstyles", "cleanup" ]
}, {
"name" : "links",
"groups" : [ "links" ]
}, {
"name" : "insert",
"groups" : [ "insert" ]
}, {
"name" : "paragraph",
"groups" : [ "list", "blocks", "align" ]
},
{
"name" : "styles"
},
{
"name" : 'colors'
}, {
"name" : 'editing',
"groups" : [ 'find', 'selection', 'spellchecker' ]
}, ],
removeButtons : 'Image,Flash,Iframe'
});
} catch (e) {
// TODO: handle exception
}
}
Custom_config.js 放在/target/work/plugins/ckeditor-4.4.1.0/web-app/js/ckeditor/custom_config.js
请帮帮我。提前致谢。
最佳答案
您使用的方式正确。再次检查您的代码。肯定还有别的问题。将自定义配置添加到您的 ckeditor:
CKEDITOR.config.customConfig = '/your/path/ckeditor_config.js';
您可以引用此了解更多详情:LINK
关于javascript - 如何在ckeditor中添加自定义config.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31668682/
我是一名优秀的程序员,十分优秀!