我的textarea上有一个tinyMCE编辑器。我经常使用word按钮的粘贴,当我从单词重新播放时,我想清除编辑器的内容。
你对如何做到这一点有所了解。
答案 0 :(得分:2)
我找到了解决方案。在初始化tinyMCE时,我重写了粘贴后处理:
paste_postprocess : function(pl, o) {
// Content string containing the HTML from the clipboard
tinyMCE.activeEditor.setContent('');
return tinymce.dom.Event.cancel(pl);
}