gpt4 book ai didi

tinymce - 在 tinyMCE 中自定义文件菜单

转载 作者:行者123 更新时间:2023-12-01 15:43:05 31 4
gpt4 key购买 nike

是否可以在tinymce的文件菜单中添加新的菜单项进行自定义?我找到了编辑或禁用文件菜单的解决方案。即

tinymce.init({
selector: "textarea",
menubar: "edit format"
});
Disable menubar:

tinymce.init({
selector: "textarea",
menubar: false
});

但无法自定义 hat 文件菜单有什么想法吗?

最佳答案

可能重复:Is it possible to have custom Functions and commands in the TinyMCE4 Menubar?

// Adds a custom menu item to the editor that inserts contents when clicked
// The context option allows you to add the menu item to an existing default menu
tinymce.init({
...

setup: function(ed) {
ed.addMenuItem('example', {
title: 'My menu item',
context: 'tools',
onclick: function() {
ed.insertContent('Hello world!!');
}
});
}
});

关于tinymce - 在 tinyMCE 中自定义文件菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16562273/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com