Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ckeditor 自定义工具栏内联编辑器_Ckeditor_Fckeditor - Fatal编程技术网

Ckeditor 自定义工具栏内联编辑器

Ckeditor 自定义工具栏内联编辑器,ckeditor,fckeditor,Ckeditor,Fckeditor,我想在自定义工具栏内联中使用下划线,但当粗体、链接和斜体工作时,它不起作用 var cfg1 = { toolbar: [ ['Source', '-', 'Bold','Italic', 'Underline'] ] }; CKEDITOR.disableAutoInline = true; CKEDITOR.inline('inputGozine1',cfg1); 如何在内联工具栏中使用下划线?是否检查了c

我想在自定义工具栏内联中使用
下划线
,但当
粗体
链接
斜体
工作时,它不起作用

 var cfg1 = {
        toolbar: [
            ['Source', '-', 'Bold','Italic', 'Underline']

        ]
    };
    CKEDITOR.disableAutoInline = true;
    CKEDITOR.inline('inputGozine1',cfg1);

如何在内联工具栏中使用下划线?

是否检查了
config.js
文件中的内容?在标准和基本预设中有:

config.removeButtons = 'Underline,Subscript,Superscript';
并且此设置的优先级高于
config.toolbar
,因此请确保删除此行