...
- 삽입 가능 DOM: <div>, <td>, <p>, <span>
Params: selector, text
| Name | Type | Description |
|---|---|---|
| selector | string | 편집할 DOM을 가져올 selector |
| text | String | 삽입할 text |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
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'); |
...