按位置获取元素?

发布于 2024-11-29 04:12:24 字数 153 浏览 1 评论 0原文

我正在处理 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

匿名。 2024-12-06 04:12:24
var yourElement = document.elementFromPoint(10, 10);

这是一个有效的示例,它更改指定点处元素的背景颜色。

请注意,如果指定点位于文档的可见区域之外,elementFromPoint 将返回null

var yourElement = document.elementFromPoint(10, 10);

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 return null.

芸娘子的小脾气 2024-12-06 04:12:24

你可以尝试这个:

$("svg").find("[x='10'][y='10']");

它将给出所有具有 svg 且 x = 10 和 y = 10 的元素。

工作 demo< /a>

You can try this:

$("svg").find("[x='10'][y='10']");

It will give all the elements with svg which have x = 10 and y = 10.

Working demo

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