小编drh*_*hoo的帖子

TinyMCE添加多个自定义工具栏按钮

我正在关注http://tinymce.moxiecode.com/tryit/custom_toolbar_button.php上的教程, 但需要添加多个自定义按钮.

这是我添加一个按钮的块,但我需要添加多个按钮而不知道如何

setup : function(fn) {
    // Add a custom button
    fn.addButton('firstname', {
        title : 'Member First Name',
        image : 'resources/scripts/tiny_mce/themes/advanced/img/firstname.gif',
        onclick : function() {
            // Add you own code to execute something on click
            fn.focus();
            fn.selection.setContent('{firstname}');
        }
    });
}
Run Code Online (Sandbox Code Playgroud)

谢谢你的帮助

tinymce

3
推荐指数
1
解决办法
4515
查看次数

标签 统计

tinymce ×1