5

这是我的代码:

http://jsfiddle.net/KfVJK/

这是添加编辑器的代码:

$(document).ready(
            function()
            {
                $('#redactor_content').redactor();
            }
        );​

我想限制工具栏上的按钮数量。例如,只有基本格式,如粗体、斜体等。

如何从工具栏中删除按钮?

4

2 回答 2

8

使用buttons设置:

var buttons = ['formatting', '|', 'bold', 'italic'];

$('#redactor').redactor({buttons: buttons});

这是从文档中提取的:

默认情况下,此设置包含以下工具栏按钮数组:

['html', '|', 'formatting', '|', 'bold', 'italic', 'deleted', '|', 
'unorderedlist', 'orderedlist', 'outdent', 'indent', '|',
'image', 'video', 'file', 'table', 'link', '|',
'fontcolor', 'backcolor', '|', 'alignment', '|', 'horizontalrule']

// additional buttons
// 'underline', 'alignleft', 'aligncenter', 'alignright', 'justify'
// If you wish to set your own array, set it in this option:

$('#redactor').redactor({
    buttons: ['html', '|', 'formatting', '|', 'bold', 'italic'] 
});
于 2012-10-24T11:20:52.120 回答
7

浏览他们的文档后,我建议您将按钮设置如下:

$('#redactor').redactor({
    buttons: ['formatting', '|', 'bold', 'italic'] 
});

演示:http: //jsfiddle.net/KfVJK/3/

于 2012-10-24T11:23:17.810 回答