TinyMCE - 从 Popup 传递值
我正在使用 TinyMCE 。单击后,我成功打开内联弹出窗口。但我不知道如何将值从弹出窗口传递到tinyMCE。高度赞赏任何帮助。
tinyMCE.activeEditor.windowManager.open({
file : "options.jsp",
title : 'Image Manager',
width : 800,
height : 600,
resizable : "yes",
inline : "yes",
close_previous : "no",
win : window
});
I am using TinyMCE . On a Click I am opening an inline popup successfully.But I have no idea how I can pass a value from popup to tinyMCE.Any help highly appreciated.
tinyMCE.activeEditor.windowManager.open({
file : "options.jsp",
title : 'Image Manager',
width : 800,
height : 600,
resizable : "yes",
inline : "yes",
close_previous : "no",
win : window
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己花了一些时间才找到答案。这并不难。要从弹出窗口将 HTML 插入编辑器,您可以使用类似
tinyMCEPopup.editor
的内容,您可以从打开弹出窗口的位置寻址编辑器。例如,您可以使用在编辑器中设置变量
Took me some time to find it out myself. It is not that difficult. To insert HTML to your editor from the popup you may use something like
Using
tinyMCEPopup.editor
you may address the editor from where you opened the popup.You could for example set a variable in the editor using