Page tree

Versions Compared

Key

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

...

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


Params: selector, text

NameType
Description
datasArray

[ selector, text ]

편집할 DOM을 가져올 selector와 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');

...