按位置获取元素?
我正在处理 SVG 脚本,
其中有 getElementById 或 getElementsByTagName,
但我找不到任何按位置获取元素的方法
,例如获取位置为 x=10,y=10 的元素。
有什么办法可以实现这个目标吗?
I am working on SVG script
there are getElementById or getElementsByTagName
but I can't find any method to get elements by position
such as get the elements whose position is x=10,y=10.
is there any way I can achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个有效的示例,它更改指定点处元素的背景颜色。
请注意,如果指定点位于文档的可见区域之外,
elementFromPoint
将返回null
。Here's a working example that changes the background colour of the element at the specified point.
Note that if the specified point is outside the visible area of the document,
elementFromPoint
will returnnull
.你可以尝试这个:
它将给出所有具有 svg 且 x = 10 和 y = 10 的元素。
工作 demo< /a>
You can try this:
It will give all the elements with svg which have x = 10 and y = 10.
Working demo
请参阅此实现
http://www.webdeveloper.com/forum/存档/index.php/t-50184.html
see this implementation
http://www.webdeveloper.com/forum/archive/index.php/t-50184.html