Page tree

Versions Compared

Key

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

Tab extends Element

탭을 편집하는데 사용되는 API 모델입니다.

Methods

NameParamReturn설명
append{String} html
자식을 뒤에 추가 합니다.
prepend{String} html
자식을 앞에 추가합니다.
setText{String} text
글자를 설정합니다.

Methods

Table of Contents
maxLevel3
minLevel3

remove()

Element 자신을 제거합니다.

Code Block
languagejs
themeEmacs
var run = editor.getAPIModelById('id');
run.remove();

replace(html)

  • html <String> 교체할 HTML String.

...