Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

릴리즈 2.17.0 이상

html을 삽입합니다.

캐럿이 있는 경우 캐럿이 위치한 곳에 html이 삽입됩니다.

문단을 셀렉션한 경우 insertType 파라미터 값에 따라 html이 삽입됩니다.


Parameters:

NameTypeDescription
actionNameString액션 이름
htmlString삽입할 html을 설정합니다.
insertTypeString

html 삽입 방식을 설정합니다.

셀렉션 상태일 때 유효합니다.

  • 'overwrite': 덮어쓰기
  • 'before': 앞에 삽입
  • 'after': 뒤에 삽입
overwriteStyleboolean이전 텍스트의 스타일을 덮어쓸 것인지 여부를 설정합니다. (기본값: 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);
  • No labels