对于文本节点是否有与 getBoundingClientRect() 等效的方法?
有没有办法获取文本节点的边界矩形?
getBoundingClientRect() 方法仅在元素上定义,并且父元素比实际文本节点大。
Is there a way to get the bounding rect of a text node?
The getBoundingClientRect() method is defined on elements only, and the parent element is bigger then the actual text node.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不需要支持 IE8 或更早版本,则可以使用
Range< /code>
到 选择文本节点,然后直接从
Range
获取边界矩形。示例(应该在此页面中工作):
如果您要对多个文本节点执行此操作,您还可以重用
Range
对象;只需确保在完成之前不要调用range.detach()
即可。 (注意:Range.detach()
现在是 DOM 标准,尽管一些较旧的浏览器在调用后仍会禁用该范围。)If you don't need to support IE8 or older, you can use a
Range
to select the text node, and then get the bounding rect directly from theRange
.Example (should work in this page):
You can also reuse the
Range
object if you're doing this for multiple text nodes; just make sure not to callrange.detach()
until you're done. (Note:Range.detach()
is now a no-op in the DOM standard, though some older browsers will still disable use of the range after its invocation.)将文本节点包裹在
中,获取该 span 的
boundingRect
。Wrap the text node in a
<span>
, get theboundingRect
of that span.