Range - Web API 接口参考 编辑

Range 接口表示一个包含节点与文本节点的一部分的文档片段。

可以用 Document 对象的 Document.createRange 方法创建 Range,也可以用 Selection 对象的 getRangeAt 方法获取 Range。另外,还可以通过 Document 对象的构造函数 Range() 来得到 Range。

属性

Range.collapsed 只读
返回一个表示 Range 的起始位置和终止位置是否相同的布尔值
Range.commonAncestorContainer 只读
返回完整包含 startContainerendContainer 的、最深一级的节点
Range.endContainer 只读
返回包含 Range 终点的节点
Range.endOffset 只读
返回一个表示 Range 终点在 endContainer 中的位置的数字。
Range.startContainer 只读
返回包含 Range 开始的节点
Range.startOffset 只读
返回一个表示 Range 起点在 startContainer 中的位置的数字。

构造器

Range()
返回一个以全局(global) Document 作为起点与终点的 Range 对象。

方法

该接口没有继承的方法。

定位方法

Range.setStart()
设置 Range 的起点。
Range.setEnd()
设置 Range 的终点。
Range.setStartBefore()
以其它节点为基准,设置 Range 的起点。
Range.setStartAfter()
以其它节点为基准,设置 Range 的起点。
Range.setEndBefore()
以其它节点为基准,设置 Range 的终点。
Range.setEndAfter()
以其它节点为基准,设置 Range 的终点。
Range.selectNode()
使 Range 包含某个节点及其内容。
Range.selectNodeContents()
使 Range 包含某个节点的内容。
Range.collapse()
Range 折叠至其端点(boundary points,起止点,指起点或终点,下同)之一。

编辑方法

通过以下方法,可以从 Range 中获得节点,改变 Range 的内容。

Range.cloneContents()
返回一个包含 Range 中所有节点的文档片段
Range.deleteContents()
文档中移除 Range 包含的内容。
Range.extractContents()
Range 的内容从文档树移动到一个文档片段中。
Range.insertNode()
Range 的起点处插入一个节点
Range.surroundContents()
Range 的内容移动到一个新的节点中。

其他方法

Range.compareBoundaryPoints()
比较两个 Range 的端点。
Range.cloneRange()
返回拥有和原 Range 相同的端点的克隆 Range 对象。
Range.detach()
Range 从使用状态中释放,改善性能。
Range.toString()
Range 的内容作为字符串返回。

Gecko 方法

下面的是 Mozilla 独有的、不被包含在 W3C DOM 标准中的 Range 方法。

Range.compareNode()
返回一个常量,表示节点是否在 Range 的前、后、中、外。
Range.comparePoint()
返回 -1、0、1,分别表示指定点(point)位于 Range 的前、中、后。
Range.createContextualFragment()
解析指定字符串(格式为 XML 或 HTML),并返回一个文档片段
Range.getBoundingClientRect()
返回单个 ClientRect 对象,which bounds the entire contents of theRange; this would be the union of all the rectangles returned by range.getClientRects().
Range.getClientRects()
返回一个 ClientRect 对象的列表,that aggregates the results of Element.getClientRects() for all the elements in the Range.
Range.intersectsNode()
返回布尔值,表示指定节点是否横断 Range
Range.isPointInRange()
返回布尔值,表示指定点是否位于 Range 之中。

规范

规范状态注释
DOM
Range
Living StandardDo not use RangeException anymore, use DOMException instead.
Made the second parameter of collapse() optional.
Added the methods isPointInRange(), comparePoint(),  and intersectsNode().
Added the constructor Range().
DOM Parsing and Serialization
Extensions to Range
Working DraftAdded the method createContextualFragment().
CSS Object Model (CSSOM) View Module
Extensions to Range
Working DraftAdded the methods getClientRects() and getBoundingClientRect().
Document Object Model (DOM) Level 2 Traversal and Range Specification
Range
ObsoleteInitial specification.

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:115 次

字数:12048

最后编辑:6 年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文