CKEditor 自定义工具栏内联
CKEditor custom toolbar inline
我想在自定义工具栏中使用 Underline
,但它不起作用,而 bold
、link
和 Italic
也可以。
var cfg1 = {
toolbar: [
['Source', '-', 'Bold','Italic', 'Underline']
]
};
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline('inputGozine1',cfg1);
如何在内联工具栏中使用 Underline
?
您检查过 config.js
文件中的内容了吗?在标准和基本预设中有:
config.removeButtons = 'Underline,Subscript,Superscript';
并且此设置的优先级高于 config.toolbar
,因此请务必删除此行。
我想在自定义工具栏中使用 Underline
,但它不起作用,而 bold
、link
和 Italic
也可以。
var cfg1 = {
toolbar: [
['Source', '-', 'Bold','Italic', 'Underline']
]
};
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline('inputGozine1',cfg1);
如何在内联工具栏中使用 Underline
?
您检查过 config.js
文件中的内容了吗?在标准和基本预设中有:
config.removeButtons = 'Underline,Subscript,Superscript';
并且此设置的优先级高于 config.toolbar
,因此请务必删除此行。