CKEditor - preventing users from pasting images

后端 未结 4 840
庸人自扰
庸人自扰 2021-02-10 02:54

I would like giving my users a limited editor, using the great CKEditor.

I was trying to prevent people from adding images, therefore I\'ve blocked the \"Source\" view a

4条回答
  •  误落风尘
    2021-02-10 03:30

    If you want to be able to prevent this in the Source view as well, just add this code to your plugin:

    editor.on('key', function(e) {
        var html = CKEDITOR.currentInstance.getData();
        if (!html) {
            return;
        }
        CKEDITOR.currentInstance.setData(replaceImgText(html));
    });
    

提交回复
热议问题