TinyMCE - 从 Popup 传递值

发布于 2024-10-28 23:00:56 字数 327 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

誰認得朕 2024-11-04 23:00:56

我自己花了一些时间才找到答案。这并不难。要从弹出窗口将 HTML 插入编辑器,您可以使用类似

var my_html_code = 'New phrase!';
tinyMCEPopup.execCommand('mceInsertContent', false, my_html_code);

tinyMCEPopup.editor 的内容,您可以从打开弹出窗口的位置寻址编辑器。
例如,您可以使用在编辑器中设置变量

tinyMCEPopup.editor.new_variable = 'blah blah';

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

var my_html_code = 'New phrase!';
tinyMCEPopup.execCommand('mceInsertContent', false, my_html_code);

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

tinyMCEPopup.editor.new_variable = 'blah blah';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文