TinyMCE - How to add a button that wraps selected text with a tag

前端 未结 2 1756
灰色年华
灰色年华 2021-02-02 00:02

I\'m currently using TinyMCE and would like to add a custom button that works as follows:

  1. User highlights text in the text-editior
  2. User clicks the custom
2条回答
  •  余生分开走
    2021-02-02 00:32

    ed.addButton('mybutton', {
      title: 'My button', 
      class: 'MyCoolBtn', 
      image: 'MyCoolBtn.png', 
      onclick: function() { 
        // Add your own code to execute something on click 
        ed.focus();
        ed.selection.setContent('' + ed.selection.getContent() + '');
      }
    });
    

提交回复
热议问题