Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Range.selectNodeContents()

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

Range.selectNodeContents() 는 Node의 내용을 포함하는 Range 를 설정합니다.

Parent Node 의 start, end 값이 Reference가 됩니다. startOffset 은 0이고, endOffset 은 Child Node의 수 혹은 Reference Node에 포함되어 있는 Child Node의 수가 됩니다.

range.selectNodeContents(referenceNode);

Parameters

referenceNode
Range 로 선택될 내용의 Node 

Example

range = document.createRange();
referenceNode = document.getElementsByTagName("div")[0];
range.selectNodeContents(referenceNode);

Specifications

Specification Status Comment
DOM
The definition of 'Range.selectNodeContents()' in that specification.
Living Standard No change.
Document Object Model (DOM) Level 2 Traversal and Range Specification
The definition of 'Range.selectNodeContents()' in that specification.
Recommendation Initial specification.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 1.0 (1.7 or earlier) 9.0 9.0 (Yes)
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) 1.0 (1.0) 9.0 9.0 (Yes)

See also

문서 태그 및 공헌자

 이 페이지의 공헌자: incleaf
 최종 변경: incleaf,