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.
如果我在 Javascript 控制台中输入: tinyMCEPopup.close();
它返回:TypeError:无法读取未定义的属性“windowManager”
谢谢!
在弹出窗口中,我调用以下命令:
parent.tinyMCE.activeEditor.windowManager.close(window);
尝试:
win.ed.windowManager.close(this); //where //win is parent window //ed is tinyMCE object
希望能帮助到你