我需要在内联模式下禁用编辑模式。
我尝试使用此代码
CKEDITOR.disableAutoInline = false;
var editor = CKEDITOR.inline(elm[0], {
extraAllowedContent: '*',
toolbarStartupExpanded : false,
toolbarCanCollapse : false,
startupFocus: false,
});
editor.on('instanceReady', function (ev) {
var ed = ev.editor;
ed.setReadOnly(true);
editor.removeListener();
});
editor.on('focus', function (event) {
return false;
});
editor.on('blur', function () {
return false;
});
此代码隐藏工具栏,但菜单(右键单击)已启用,我需要完全禁用(只读模式)“渲染内容”,但我需要所有插件,包括“代码”和引用。 (如果我使用“removePlugin”工具栏渲染“,我的插件代码,引用等不能使我的代码正确)任何想法?
答案 0 :(得分:0)