Page tree

Versions Compared

Key

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

...

public setTextBySelectors(datas: Array)

편집할 DOM selector들을 지정하여 text를 한번에 삽입 할 수 있는 API입니다.

...

API to insert text at once by designating DOM selectors to edit.

  • Insertable DOM: <div>, <td>, <p>


Params: selector, text

NameType
Description
datasArray

[ Object]

  • {
    selector: String,
    text: String
    }
편집할 DOM을 가져올 selector와 Selector to load DOM to edit and text


Example:

Code Block
languagejs
themeEmacs
window.editor.setTextBySelectors([{'#field', 'Filed Text'}, {'#name', 'Name Text'}, {'#birth', 'Birth day'}]);

...



Experiencing

Include Page
DEMO:DOM API
DEMO:DOM API