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 4 Next »

html을 삽입합니다.

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

문단을 셀렉션한 경우 셀렉션한 영역에 html이 삽입됩니다.


Parameters:

NameTypeDescription
actionNameString액션 이름
htmlStringhtml
insertTypeString

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

  • 'overwrite': 덮어쓰기
  • 'before': 앞에 삽입
  • 'after': 뒤에 삽입
overwriteStyleboolean이전 텍스트의 스타일을 덮어쓸 것인지 여부


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