Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在它的内联模式下使用 TinyMCE 4。但是,我不知道如何在页面上的某些其他操作期间以编程方式关闭窗口。有没有办法做到这一点?
在 tinymce3 中这有效(我想这在 tinymce4 中也应该有效):
for (var i=tinymce.editors.length; i>=0; i--) { tinymce.execCommand('mceRemoveControl',false, tinymce.editors[i].id); };