可用命令setHTML
替换现有内容。有没有办法在特定位置插入 HTML 内容作为insertText
.
问问题
544 次
1 回答
1
经过长时间的研究,我发现目前没有内置的方法可以完成这项工作。但是 Telerik 论坛提供了一种解决方法。
论坛链接:insert-html-content-to-editor
public insertHTML(editor: EditorComponent) {
editor.exec('insertText', { text: '#CURSOR#' });
// Replace cursor placeholder with new HTML and set the new editor value.
editor.value = editor.value.replace(/#CURSOR#/, this.strResult);
}
于 2020-06-23T11:20:47.920 回答