0

我正在使用 Redactor,需要将元素动态添加到自定义下拉菜单中。我在文档中找不到任何这样做的方法 - 有人知道这是否可能吗?

4

1 回答 1

1

是的,如果你使用它是可能的:

$('#redactor').redactor({
   focus: true,
   buttonsAdd: ['|', 'button1'],
   buttonsCustom: {
      button1: {
         title: 'Button',
         callback: function(buttonName, buttonDOM, buttonObject) { /* … */ },
         dropdown: {
             alignleft: {
                title: lang.align_left,
                func: 'alignmentLeft'
             },
             aligncenter: {
                title: lang.align_center,
                func: 'alignmentCenter'
             }
         }
      }
   }
});
于 2013-08-16T09:24:37.573 回答