gpt4 book ai didi

javascript - 如何在ckeditor中添加自定义config.js

转载 作者:行者123 更新时间:2023-11-29 19:23:59 25 4
gpt4 key购买 nike

我无法将自定义配置文件添加到 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com