如何在nicEdit文本编辑器中删除上传按钮

问题描述 投票:1回答:4

我的网站上的nicedit的所有按钮都很好。但我想在我的网站之一删除编辑器的上传按钮。我有一个选择按钮列表的选项,但我正在寻找如下设置:

fullPanel:true,hideButton:'upload'

javascript wysiwyg nicedit
4个回答
2
投票

该插件似乎没有hideButton选项。 您可以拥有完整按钮列表,也可以明确选择要使用buttonList选项显示的按钮。

Documentation

我想也许你可以用CSS隐藏它,但插件确实会在按钮上添加任何类或ID,这样它就会使目标变得非常不可靠。


4
投票

只需放置您需要的按钮即可。

new nicEditor({buttonList : ['fontSize','bold','italic','underline','strikeThrough','subscript','superscript','html','image']}).panelInstance('area1');

0
投票

你可以去nicEdit.js尝试找到.. buttonList ..在那里你可以看到按钮列表。删除,上传


0
投票

我一直在扩展和修复nicEdit插件(添加了简单的YouTube嵌入和DragNDropz https://dragndropz.com图像上传支持),并且我添加了一个忽略按钮选项,以便轻松忽略特定按钮。

来源和更新版本在这里:

https://dev.x-null.net/own3mall/nic-edit/tree/yt-videos

如何使用它的示例:

myNicEditor = new nicEditor({fullPanel : true, buttonIgnoreList: new Array('upload', 'youtube')}).panelInstance('go_nicedit',{hasPanel : true});
© www.soinside.com 2019 - 2024. All rights reserved.