2

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

看图片

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

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

并且 open_source_html() 应该打开我的 tinymcepopup:localhost:61025/Web/Scripts/tinymce/themes/advanced/source_editor_CUSTOM.htm 文件

请帮我。

4

2 回答 2

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();
            }
        });
    }
)};
于 2013-01-31T10:00:15.993 回答
1
tinyMCE.activeEditor.windowManager.open({
            url : 'http://localhost/Save.html',
            width : 520,
            height : 340,
            resizable : "yes",
            inline : true,
            close_previous : "yes"

            });

知道了。多谢你们。

于 2013-01-31T19:36:28.293 回答