html을 삽입합니다.
캐럿이 있는 경우 캐럿이 위치한 곳에 html이 삽입됩니다.
문단을 셀렉션한 경우 insertType 파라미터 값에 따라 html이 삽입됩니다.
Parameters:
| Name | Type | Description |
|---|---|---|
| actionName | String | 액션 이름 |
| html | String | html |
| insertType | String | 셀렉션 상태일 때 유효합니다.
|
| overwriteStyle | boolean | 이전 텍스트의 스타일을 덮어쓸 것인지 여부 |
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);