0

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 に何を書くべきかわかりませんか?

4

1 に答える 1

0

その特定のプラグインのプラグイン ソース ファイルに書き込む必要があります。

于 2019-09-18T14:33:08.993 に答える