Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

릴리즈 2.3.0 이상



public setText(selector: String, text: String)

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

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


Params: selector, text

NameTypeDescription
selectorstring편집할 DOM을 가져올 selector
textString삽입할 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');



public setTextBySelectors(datas: Array)

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

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


Params: selector, text

NameType
Description
datasArray

[ selector, text ]

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

체험하기


지원분야
성명
생년월일
현주소
연락처
Copyright
지원분야
성명
생년월일
현주소
연락처
Copyright




  • No labels