有没有一种方法可以向WMD Editor添加自定义按钮来扩展编辑器的功能?

我对要添加的各种按钮的想法是:

  • 标记所选文本
  • 插入一些预定义的文本

  • 谢谢
    杂物

    最佳答案

    是的你可以。

    1)您需要扩展图像“wmd-buttons.jpg”

    编辑图像并添加按钮以扩展功能。
    2)为按钮添加脚本以与事件绑定(bind)(例如插入一些文本)

            var Insertbutton= document.createElement("li");
            Insertbutton.className = "wmd-button";
            Insertbutton.id = "wmd-insertsometext-button";
            Insertbutton.title = "Emphasis <em> Ctrl+v";
            Insertbutton.XShift = "-60px";
            Insertbutton.textOp = command.inserttext;
            setupButton(inserttextButton, true);
            buttonRow.appendChild(inserttextButton);
    

    3)现在定义inserttext函数并放置您的插入代码。

    09-25 17:14