Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 803 Bytes

File metadata and controls

46 lines (29 loc) · 803 Bytes
title short-title slug l10n
Document: createRange() メソッド
createRange()
Web/API/Document/createRange
sourceCommit
73016bea54a98f70dc2aaad0724d0d421ef9839c

{{APIRef("DOM")}}

Document.createRange() メソッドは、新しい {{domxref("Range")}} オブジェクトを返します。

構文

createRange()

引数

なし。

返値

生成された {{domxref("Range")}} オブジェクトです。

const range = document.createRange();

range.setStart(startNode, startOffset);
range.setEnd(endNode, endOffset);

メモ

Range を生成したあと、大部分のメソッドを使用するには境界を設定する必要があります。

仕様書

{{Specifications}}

ブラウザーの互換性

{{Compat}}