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); };