Tinymce paste_preprocess意外行为

时间:2017-06-19 06:41:31

标签: wordpress plugins tinymce

在tinymce编辑器中,我在粘贴一些内容时有以下功能。

$mceInit['paste_preprocess'] = "function(plugin, o) {
            o.content = '<div class=\"pasted_content\">'+o.content+'</div>';
        }";

添加此内容后,当我粘贴一些内容时,它会按预期工作。

<div class="pasted_content">whatever content I pasted</div>

但问题是我在粘贴过程中还附加了上面的div后在编辑器中键入的内容。如何解决这个问题?

0 个答案:

没有答案