我知道我可以使用addButton
在TinyMCE 4中添加按钮。但是当我使用addButton并为其输入标题时,编辑器中只显示一个空按钮,其中包含一个包含标题内容的工具提示。如何添加标题,实际显示在菜单栏中,就像保存按钮一样?
答案 0 :(得分:1)
// Create and render a button to the body element
tinymce.ui.Factory.create({
type: 'button',
text: 'My button'
}).renderTo(document.body);
答案 1 :(得分:1)
我找到了解决方案,感谢Eslam。
实际上你只需设置addButton的'text'值:
$('#site_content').tinymce({
setup : function(ed) {
ed.addButton('name', {
text : 'TEXT',
onclick : function() {
}
});
}
});
如果你问我
,TinyMCE的文档在某些部分可能很糟糕