릴리즈 2.17.0 이상
html을 삽입합니다.
캐럿 상태인 경우 캐럿이 위치한 곳에 html이 삽입됩니다.
문단을 셀렉션 한 경우 insertType 파라미터 값에 따라 html이 삽입됩니다.
Parameters:
Name | Type | Description |
---|---|---|
actionName | String | 액션 이름 |
html | String | 삽입할 html을 설정합니다. |
insertType | String |
|
overwriteStyle | boolean | 이전 텍스트의 스타일을 덮어쓸 것인지 여부를 설정합니다. (기본값: false) |
Example:
editor.execCommand('insertHTML', '<span>에디터</span>'); editor.execCommand('insertHTML', '<span>에디터</span>', 'overwrite'); editor.execCommand('insertHTML', '<span>에디터</span>', 'before'); editor.execCommand('insertHTML', '<span>에디터</span>', 'after'); editor.execCommand('insertHTML', '<span>에디터</span>', 'after', true);