Selection.rangeCount - Web APIs 编辑

Experimental

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The Selection.rangeCount read-only property returns the number of ranges in the selection.

Before the user has clicked a freshly loaded page, the rangeCount is 0. After the user clicks on the page, rangeCount is 1, even if no selection is visible.

A user can normally only select one range at a time, so the rangeCount will usually be 1. Scripting can be used to make the selection contain more than one range.

Gecko browsers allow multiple selections across table cells. Firefox allows to select multiple ranges in the document by using Ctrl+click (unless the click occurs within an element that has the display: table-cell CSS property assigned).

Syntax

value = sel.rangeCount

Example

The following example will show the rangeCount every second. Select text in the browser to see it change.

HTML

<table>
  <tr><td>a.1<td>a.2
  <tr><td>b.1<td>b.2
  <tr><td>c.1<td>c.2

JavaScript

window.setInterval(function () {
  console.log(window.getSelection().rangeCount);
}, 1000);

Result

Open your console to see how many ranges are in the selection. In Gecko browsers, you can select multiple ranges across table cells by holding down Ctrl while dragging with the mouse.

Specifications

SpecificationStatusComment
Selection API
The definition of 'Selection.rangeCount' in that specification.
Working DraftCurrent

Browser compatibility

BCD tables only load in the browser

See also

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

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

发布评论

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

词条统计

浏览:107 次

字数:3431

最后编辑:7年前

编辑次数:0 次

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