我已经为图像添加了自定义工具栏按钮,我想为其添加一个类。我试过添加类参数,但对我没用。 请咨询
tinyMCE.PluginManager.add('subBtn', function(editor, url) {
editor.addButton('subBtn', {
class :'buttonClas',
image: icon-path,
icon: true,
tooltip: tooltip,
onclick: function() {
// Open window
editor.windowManager.open({
title: 'PTION',
body: [
{type: 'textbox',value: subBtin, name: 'title', label: 'subBtn'}
],
onsubmit: function(e) {
}
});
}
});
});
答案 0 :(得分:0)
尝试"课程"而不是" class" - 您可以添加多个空格除以空格。