Page tree

Versions Compared

Key

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

...

  • 삽입 가능 DOM: <div>, <td>, <p>, <span>



Params: selector, text


NameTypeDescription
selectorstring편집할 DOM을 가져올 selector
textString삽입할 text


Example:

Code Block
languagejs
themeEmacs
window.editor.setText('#field', 'Filed Text');
window.editor.setText('#name', 'Name Text');
window.editor.setText('#birth', 'Birth day');
window.editor.setText('#address', 'Address');
window.editor.setText('#phone', 'Phone number');
window.editor.setText('#copyright', 'Copyright');

...