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

릴리즈 2.11.0 이상

Position을 기준으로 HTML Element를 반환합니다. Position이 지정되지 않은 경우 현재 캐럿 위치의 HTML Element를 반환합니다.


Parameters:

Name

Type

Attribute

Description

position

Position
[ Optional ] Selection에서 Position 정보. 이 값이 지정되지 않으면 현재 캐럿의 위치정보로 처리됩니다.

Return:

TypeDescription
HTML ElementPosition에 해당하는 HTML Element



Example:

position을 지정하지 않은 경우
var element = editor.getHTMLElement();
console.log(element.innerHTML);
Selection을 이용해서 position을 지정한 경우
var selection = editor.getSelection();
var startElement = editor.getHTMLElement(selection.start);
console.log(startElement.innerHTML);
var endElement = editor.getHTMLElement(selection.end);
console.log(endElement.innerHTML);
  • No labels