tinyMCE模式弹出窗口用于其他用途

时间:2013-01-30 22:37:57

标签: jquery tinymce

我正在尝试为我的tinyMCE编辑器实现一个额外的按钮。作为一个例子,我采用了localhost:61025 / Web / Scripts / tinymce / themes / advanced / source_editor.htm的源代码,这是html(source)按钮的引用。

see the image

我可以创建一个引用我自己文件的按钮,例如:

<input type=button value=html onclick="open_source_html()">

和open_source_html()应该打开我的tinymcepopup: 本地主机:61025 /网页/脚本/ TinyMCE的/主题/高级/ source_editor_CUSTOM.htm 文件

请帮帮我。

2 个答案:

答案 0 :(得分:2)

Alons链接很好。您还可以查看tinymce插件目录中的一些插件。

tinyMCE.init({
    mode : "textareas",
    theme : "advanced",
    ...
    setup : function(ed) {
        // Add a custom button
        ed.addButton('yourbutton', {
            title : 'Your button',
            image : 'img/example.gif', // path to your image
            onclick : function() {
                // Add you own code to execute something on click
                open_source_html();
            }
        });
    }
)};

答案 1 :(得分:0)

tinyMCE.activeEditor.windowManager.open({
            url : 'http://localhost/Save.html',
            width : 520,
            height : 340,
            resizable : "yes",
            inline : true,
            close_previous : "yes"

            });

知道了。谢谢你们。