如何在 TinyMCE 5 中的自定义按钮和自定义上下文工具栏上向元素添加样式(等 padding-left: 10px;)或 css 类?
这就是我到目前为止所做的:
editor.ui.registry.addButton('addstyle', {
icon: 'plus',
tooltip: 'Align image left',
onAction:
});
editor.ui.registry.addContextToolbar('imagealignment', {
predicate: function (node: any) {
return node.nodeName.toLowerCase() === 'img'
},
items: 'addstyle',
scope: 'node',
position: 'node'
});
我错过了在 onAction 上写什么?