这是我的代码:
这是添加编辑器的代码:
$(document).ready(
function()
{
$('#redactor_content').redactor();
}
);
我想限制工具栏上的按钮数量。例如,只有基本格式,如粗体、斜体等。
如何从工具栏中删除按钮?
这是我的代码:
这是添加编辑器的代码:
$(document).ready(
function()
{
$('#redactor_content').redactor();
}
);
我想限制工具栏上的按钮数量。例如,只有基本格式,如粗体、斜体等。
如何从工具栏中删除按钮?
使用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'] });
浏览他们的文档后,我建议您将按钮设置如下:
$('#redactor').redactor({
buttons: ['formatting', '|', 'bold', 'italic']
});
演示:http: //jsfiddle.net/KfVJK/3/