wangeditor去掉全屏按钮
时间: 2024-07-25 12:00:29 浏览: 154
wangEditor-plugin:富文本编辑器wangEditor【全屏】【源码】插件
Wangeditor是一款轻量级的富文本编辑器,如果你想从Wangeditor中移除全屏按钮,你可以通过自定义编辑器的配置来实现。以下是一个简单的步骤:
1. **获取编辑器实例**:在初始化Wangeditor时,你需要先获取到编辑器的实例。
```javascript
const editor = new Wangeditor.Editor({
// 其他配置项
});
```
2. **修改配置**:在`options`对象中,找到`toolbar`配置项,这是控制编辑器工具栏的内容。全屏按钮通常包含在`fullscreen`选项中,你可以将其设置为`false`或直接删除对应的配置项。
```javascript
editor.create({
toolbar: ['undo', 'redo', '|', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'foreColor', 'hiliteColor', '|', 'justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'blockquote', 'emotion', 'link', 'unlink', 'image', 'video', 'file', 'fullscreen'] // 取消全屏按钮
});
```
3. **初始化编辑器**:最后,使用`init`方法初始化编辑器,并应用新的配置。
```javascript
editor.init();
```
阅读全文