1

我有两个问题:

  1. 我试图有一个这样的按钮:

    buttons: buttons,
    buttonsCustom: {
      sh: {
        title: 'Syntax Highlighter', 
        callback: function(){
          var html = "<pre class='brush:'></pre>";
          this.execCommand('inserthtml', html);
        }
      }
    }
    

    我的按钮出现了,但是当我点击它时,它说“this”没有“execCommand”功能。它是如何工作的 ?我怎么能说“这个”是 Redactor ?你知道我的意思 ?

  2. 是否可以创建一个下拉列表?

4

3 回答 3

6

我想添加一个自定义按钮,就像在 redactor 中一样。我拿走了你的代码,并为我的目的更改了代码。它对我有用,你可以看看:

$(document).ready(
    function()
    {
        $('.redactor').redactor({ 
            focus: true,
            buttonsAdd: ['|', 'token'], 
            buttonsCustom: {
                token: {
                    title: 'Ajouter une variable', 
                    dropdown: {
                        header: {title: 'Entête',callback: function(obj){obj.insertHtml('%header%');}},
                        footer: {title: 'Signature',callback: function(obj){obj.insertHtml('%footer%');}},
                        last_name: {title: 'Nom',callback: function(obj){obj.insertHtml('%last_name%');}},
                        first_name: {title: 'Prénom',callback: function(obj){obj.insertHtml('%first_name%');}},
                        date: {title: 'Date',callback: function(obj){obj.insertHtml('%date%');}},
                        contract: {title: 'Contrat',callback: function(obj){obj.insertHtml('%contract%');}}
                    }
                } 
            }
        }); 
    }
);

干杯

于 2012-12-13T17:00:39.577 回答
1

我自己修好了:

callback: function(obj){
  var html = "<pre class='brush:'></pre>";
  obj.execCommand('inserthtml', html);
}
于 2012-11-23T16:51:58.270 回答
0

查看编辑器源代码(最新版本 8.2.6),我注意到您可以将第四个参数传递给插件 API 的addBtn函数来描述下拉菜单。所以,假设你想从插件内部添加一个字体大小下拉菜单:

RedactorPlugins.fontSize = {

    init: function(obj) {

        btnCallback = function(obj,event,key) {
            // button actions, if any
        }

        dropdown = {
            small: {
                title: 'Small'
                callback: function(obj,event,key) { //set the font size to small }
            }
            medium: {
                title: 'Medium'
                callback: function(obj,event,key) { //set the font size to medium }
            }
        }

        this.addBtn('fontSize','Change font size', btnCallback, dropdown);
    }

}
于 2013-04-15T18:30:12.470 回答