TinyMCE错误:无法读取属性';车身';空的

TinyMCE错误:无法读取属性';车身';空的,tinymce,Tinymce,这就是我初始化它的方式。第二次打开时出现问题。这只发生在铬合金中。Mozilla Firefox运行良好 tinyMCE.init({ mode : "exact", elements : "email_content", theme : "advanced", theme_advanced_resizing : true, plugin

这就是我初始化它的方式。第二次打开时出现问题。这只发生在铬合金中。Mozilla Firefox运行良好

tinyMCE.init({
          mode : "exact",
          elements : "email_content",
          theme : "advanced",
          theme_advanced_resizing : true,
          plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
          theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|formatselect,fontselect,fontsizeselect",
          theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,code,|,forecolor,backcolor"
});

在chrome更新(版本85)之后,我也遇到了同样的问题,但tinyMCE.init之前的这一行对我来说很有用:

tinyMCE.EditorManager.editors = [];


不幸的是,我无法用TinyMCE 4.3.13版解决这个问题。我以前试过tinyMCE.remove()也应该有同样的效果,但没有效果。除了升级之外,还有什么想法吗?我们能够通过此修复解决我们的问题。然而,TinyMCE 3.8版是我们在产品中使用的版本;
tinyMCE.editors = [];