Page tree

Versions Compared

Key

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

...

  • condition <Function> 각 요소를 시험할 함수
    • condition 함수의 첫번째 인자 : 현재 API 모델 Element
    • condition 함수의 return : <Boolean>
  • Returns: <Element> API 모델 Element

...

Code Block
languagejs
themeEmacs
// setId() samplevar element = editor.getAPIModelById('id');
element.setId('test_setId');

setStyle(cssText)

  • cssText <String> HTML DOM상에서 style 속성에 들어간 문자열

...

Code Block
languagejs
themeEmacs
// setStyle() samplevar element = editor.getAPIModelById('id');
element.setStyle('background-color: red;')

empty()

자식 요소들을 모두 제거합니다.

Code Block
languagejs
themeEmacs
// var paragraph = editor.getAPIModelById('id');
element.empty() sample;