从redactor wysiwyg中删除按钮

时间:2012-10-24 11:16:42

标签: jquery wysiwyg redactor

这是我的代码:

http://jsfiddle.net/KfVJK/

这是添加redactor的代码:

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

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

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

2 个答案:

答案 0 :(得分:8)

使用buttons设置:

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

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

这是摘自documentation

  

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

['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'] 
});

答案 1 :(得分:7)

完成docs之后,我建议您将按钮设置如下:

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

DEMO: http://jsfiddle.net/KfVJK/3/