this.editor.txt.insertHtml is not a function"
时间: 2023-09-30 09:08:42 浏览: 135
cument.execCommand()用法深入理解
如果提示 "this.editor.txt.insertHtml is not a function",可能是因为 wangeditor 版本问题。在旧版本的 wangeditor 中,insertHtml 方法被命名为 insertHTML(大写字母 L)。所以你可以尝试使用 insertHTML 方法来插入 HTML 内容,代码如下:
```
editor.txt.insertHTML('<p>要插入的 HTML 内容</p>');
```
如果还是出现错误,可能是因为当前版本的 wangeditor 不支持 insertHtml 或 insertHTML 方法。你可以查看一下当前版本的 wangeditor 文档,看看有没有其他方法可以用来在光标处插入 HTML 内容。
阅读全文