1

这是我的配置

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 文本时,我希望idstyleattrs 以及abr标签都被删除。但这没有发生,请参见此处的 plunker

难道我做错了什么?

4

1 回答 1

2

看起来这是您传入的选项名称之间的拼写错误:cleanPastedHtmlvs cleanPastedHTML

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

于 2016-01-05T22:09:19.987 回答