Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEmacs
var body = editor.getAPIModels('.se-contents')[0];
body.prepend('<p><span>PREPEND TEXT</span></p>');

replace(html)

  • html <String> 교체할 HTML String.

Element 자신을 파라메터로 넘겨받은 HTML String으로 교체합니다.

Code Block
languagejs
themeEmacs
var body = editor.getAPIModels('.se-contents')[0];

...


body.replace('<p><span>Body replaced</span></p>');

setHTML(html)

  • html <String> 설정할 HTML 문자열

...