0

已经有几篇关于类似主题的帖子。但是,在我的情况下,没有一个解决方案有效。

我已经设法使用下面的代码添加了一个新按钮,但是当我单击它时没有任何反应。

<script>
var editor = new Jodit('#editor', {
    buttons: [
        'bold',
        {
            iconURL: './icons/icon.png',
            exec: function (editor) {
                return editor.create.fromHTML('text to insert');
            }
        }
    ]
});

我究竟做错了什么?

下一步将添加一个新按钮,其中包含几个插入选项的下拉列表,每个选项用于在编辑器中插入不同的 html 文本。

有人做过吗?

4

1 回答 1

0

看看jodit文档

更正您的代码:

var editor = new Jodit('#editor', {
    buttons: [
        {   
            name: 'bold',
            tooltip: 'Bold'
            iconURL: './icons/icon.png',
            exec: function (editor) {
                editor.selection.insertHTML('text to insert');
            }
        }
    ]
 });
于 2020-05-21T14:51:22.270 回答