我已设法删除允许调整图像大小的对话框(在ckeditor image2插件中)。有没有办法阻止用户使用角手柄调整图像大小?
编辑:
Reinmar是对的。并在config.js中使用:
CKEDITOR.editorConfig = function( config ) {
...
config.disallowedContent = 'img[width,height]';
}
这也将以功能方式从对话框中删除高度和宽度选项。
答案 0 :(得分:1)
如果您完全删除width
和height
属性,则表示满意:
CKEDITOR.replace( 'editor1', {
disallowedContent: 'img[width,height]'
} );
您可以详细了解disallowed content here和Advanced Content Filter here。
如果你只想隐藏缩放器但是在图像对话框中保留输入并在代码中保留输入,那么我相信你需要通过CSS隐藏它。