릴리즈 2.3.0 이상
public setText(selector: String, text: String)
편집할 DOM selector를 지정하여 text를 삽입 할 수 있는 API입니다.
- 삽입 가능 DOM: <div>, <td>, <p>
Params: selector, text
Name | Type | Description |
---|
selector | string | 편집할 DOM을 가져올 selector |
text | String | 삽입할 text |
Example:
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');
체험하기
에디터의 문서모델(DOM)에 직접 접근하여 정보를 관리 할 수 있는 기능을 제공합니다.