范围:getBoundingClientRect() 方法
Range.getBoundingClientRect()
方法返回一个 DOMRect
对象,该对象限定了范围的内容;这是一个包含范围中所有元素的边界矩形的并集的矩形。
此方法对于确定文本框内光标或选择的视窗坐标很有用。有关返回值的详细信息,请参见 Element.getBoundingClientRect()
。
语法
js
getBoundingClientRect()
参数
无。
返回值
一个 DOMRect
对象,该对象包含范围中所有元素的边界矩形的并集。
示例
HTML
html
<div id="highlight"></div>
<p>
This example positions a "highlight" rectangle behind the contents of a range.
The range's content <em>starts here</em> and continues on until it
<em>ends here</em>. The bounding client rectangle contains everything selected
in the range.
</p>
CSS
css
#highlight {
background: yellow;
position: absolute;
z-index: -1;
}
p {
width: 200px;
}
JavaScript
js
const range = document.createRange();
range.setStartBefore(document.getElementsByTagName("em").item(0));
range.setEndAfter(document.getElementsByTagName("em").item(1));
const clientRect = range.getBoundingClientRect();
const highlight = document.getElementById("highlight");
highlight.style.left = `${clientRect.x}px`;
highlight.style.top = `${clientRect.y}px`;
highlight.style.width = `${clientRect.width}px`;
highlight.style.height = `${clientRect.height}px`;
结果
规范
规范 |
---|
CSSOM 视图模块 # dom-range-getboundingclientrect |
浏览器兼容性
BCD 表格仅在浏览器中加载
另请参见
-
Range.getClientRects()
- 对非矩形范围(例如,当选择换行到下一行时)更精细的结果; Element.getBoundingClientRect()
-
Document.caretPositionFromPoint()
- 用于从视窗坐标获取(节点、偏移量)。