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

Version 1 Current »

Quote extends Element

인용기호를 편집하는데 사용되는 API 모델입니다.

Methods

append(html)

  • html <String> 추가할 HTML String.

인자로 넘겨받은 HTML String으로 Element의 뒤쪽에 자식으로 추가합니다.

var quote = editor.getAPIModelById('id');
quote.append('<span>TEXT</span>');

prepend(html)

  • html <String> 추가할 HTML String.

인자로 넘겨받은 HTML String으로 Element의 앞쪽에 자식으로 추가합니다.

var quote = editor.getAPIModelById('id');
quote.prepend('<span>TEXT</span>');

remove()

Element 자신을 제거합니다.

모든 ELEMENT를 제거할 경우 이후의 작업에서 오류가 발생할 수 있습니다.

var quote = editor.getAPIModelById('id');
quote.remove();

replace(html)

  • html <String> 교체할 HTML String.

Element 자신을 인자로 넘겨받은 HTML String으로 교체합니다.

var quote = editor.getAPIModelById('id');
quote.replace('<p><span>Quote replaced</span></p>');

setHTML(html)

  • html <String> 인용기호 내부에 설정할 HTML 문자열

인자로 넘겨받은 HTML 문자열값을 인용기호의 내부 HTML로 설정합니다.

var quote = editor.getAPIModelById('id');
quote.setHTML('<p><span>HTML를 추가합니다. 기존에 입력된 내용은 모두 지워집니다.</span></p>');

setText(text)

  • text <String> 인용기호 내부에 설정할 Text 문자열

인자로 넘겨받은 Text 문자열값을 인용기호의 내부 Text로 설정합니다.

var quote = editor.getAPIModelById('id');
quote.setText('텍스트입니다.');
  • No labels