2012-10-24 83 views
5

刪除按鈕,這是我的代碼:從主編所見即所得

http://jsfiddle.net/KfVJK/

這是添加主編代碼:

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

我想限制在工具欄上的按鈕數。例如,只有像粗體,斜體等基本格式。

如何從工具欄中刪除按鈕?

回答

7

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