tinymce6无法使用img tools
时间: 2023-07-15 17:15:56 浏览: 147
如果您在使用 TinyMCE 6 时遇到了无法使用 img tools 的问题,可能是因为该版本的 TinyMCE 已经将该插件移除了。相反,它推荐使用新的 image 插件。
要使用 image 插件,请确保在 TinyMCE 的初始化中包含 image 插件的名称,并将其添加到您的菜单和工具栏配置中。以下是一个示例:
```javascript
tinymce.init({
selector: 'textarea',
plugins: 'image',
toolbar: 'image',
menu: {
file: { title: 'File', items: 'newdocument' },
edit: { title: 'Edit', items: 'undo redo | cut copy paste pastetext | selectall' },
insert: { title: 'Insert', items: 'link image media | template hr' },
view: { title: 'View', items: 'visualaid' },
format: { title: 'Format', items: 'bold italic underline strikethrough superscript subscript codeformat' },
table: { title: 'Table', items: 'inserttable tableprops deletetable | cell row column' },
tools: { title: 'Tools', items: 'spellchecker code' }
}
});
```
在上面的示例中,我们将 image 插件添加到 TinyMCE 的插件列表中,并将其添加到工具栏中。您可以根据需要自定义菜单和工具栏配置。
希望这可以帮助您解决问题!
阅读全文