gpt4 book ai didi

javascript - 从 TinyMCE 编辑器隐藏文件编辑插入

转载 作者:行者123 更新时间:2023-12-03 08:54:54 26 4
gpt4 key购买 nike

我只想从 TinyMCE 编辑器的菜单中删除“文件编辑插入 View ”选项。 enter image description here

我尝试使用检查元素并使用下面的 JavaScript 代码来删除菜单行:

document.getElementById('tinymce-16').style.display = 'none';

但它不起作用。我收到错误

Uncaught TypeError: Cannot read property 'style' of null

最佳答案

其实很简单。您需要指定编辑器初始化时要显示的内容。

HTML

<form>
<textarea></textarea>
</form>

JS

tinymce.init({
selector: 'textarea',
plugins: [
"code table"
],
menubar: "format table tools",
});

这只会显示格式、表格和工具。看这个DEMO

关于javascript - 从 TinyMCE 编辑器隐藏文件编辑插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32550253/

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