自定义菜单

最后更新于:2022-04-01 23:41:28

可通过修改 `editor.config.menus` 来自定义编辑器的菜单的显示/隐藏、排序、分组。注意,该操作必须在 `editor.create()` 方法之前。 ```html

请输入内容...

``` 另外,`wangEditor`默认的菜单配置,可在下载下来的`wangEditor.js`文件中搜索**`E.config.menus`**关键字来找到。 目前的默认菜单配置如下,**以在最新代码中搜索出来的结果为准** ```javascript [ 'source', '|', 'bold', 'underline', 'italic', 'strikethrough', 'eraser', 'forecolor', 'bgcolor', '|', 'quote', 'fontfamily', 'fontsize', 'head', 'unorderlist', 'orderlist', 'alignleft', 'aligncenter', 'alignright', '|', 'link', 'unlink', 'table', 'emotion', '|', 'img', 'video', 'location', 'insertcode', '|', 'undo', 'redo', 'fullscreen' ]; ``` ----- **如果需要『行高』和『缩进』菜单,可直接使用`lineheight`和`indent`这两个菜单id。因为wangEditor中已经集成了这两个自定义菜单的代码。**
';