需求
1业务需求邮件模板编辑页面右键粘贴兼容性不好,打算屏蔽.
2 插入的预定义的图片不希望被编辑
解决
百度+google问题
针对CkEditor4.8之后的版本可以移除插件使用来实现功能的屏蔽.
屏蔽右键菜单
https://stackoverflow.com/questions/2246631/how-to-disable-ckeditor-context-menu
/*Ckeditor 4.7.1*/
CKEDITOR.editorConfig = function (config) {
config.language = 'en';
config.toolbar = "mini";
config.removePlugins = 'elementspath,contextmenu,liststyle,tabletools,tableselection';
config.disableNativeSpellChecker = false;
}
/*Ckeditor 4.8.0 ('elementspath' plugin no longer need to remove)*/
CKEDITOR.editorConfig = function (config) {
config.language = 'en';
config.toolbar = "mini";
config.removePlugins = 'contextmenu,liststyle,tabletools,tableselection';
config.disableNativeSpellChecker = false;
}
屏蔽双击图片弹出编辑窗口
同样的思路也通过设置 config.removePlugins属性来实现
/*Ckeditor 4.11*/
CKEDITOR.editorConfig = function (config) {
config.disableNativeSpellChecker = false;
}