这是我的配置

new MediumEditor(".editor", {
    buttons: ['italic', 'bold', 'underline', 'anchor', 'unorderedlist', 'quote'],
    paste: {
        // This example includes the default options for paste, if nothing is passed this is what it used
        forcePlainText: false,
        cleanPastedHtml: true,
        cleanReplacements: [],
        cleanAttrs: ['id', 'style'],
        cleanTags: ['a', 'br']
    }
});


当我粘贴一些html文本时,我希望删除idstyle attrs以及abr标记。但这没发生,请参见plunker here

难道我做错了什么?

最佳答案

看起来这是您输入的选项名称:骆驼套和cleanPastedHtml之间的错别字。

如果您改用cleanPastedHTML,我相信这可以解决您的问题。

09-17 15:28