根据 DOM 中的位置获取元素名称

发布于 2024-07-20 11:21:44 字数 414 浏览 4 评论 0原文

我想找到我获得顶部和左侧位置的元素的名称或 ID。

我知道如何使用 jquery 查找元素的位置(将鼠标悬停在 div 上将触发该位置文本将出现在屏幕上):

    $(".item").hover(function () {
      var eleoffset = $(this).offset();
      $("#mouse").text("Mouse - Top: " + eleoffset.top + " - Left: " + eleoffset.left);
    });


<div class="item">This is a text block</div>
<div id="mouse">Waiting for position data...</div>

I want to find the name or ID of a element where I got top and left position.

I know how to use jquery to find the position of an element (Hovering over the div will trigger that position text will appear on screen):

    $(".item").hover(function () {
      var eleoffset = $(this).offset();
      $("#mouse").text("Mouse - Top: " + eleoffset.top + " - Left: " + eleoffset.left);
    });


<div class="item">This is a text block</div>
<div id="mouse">Waiting for position data...</div>

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

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

发布评论

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

评论(3

無心 2024-07-27 11:21:44

我不确定你的意思。 但是您可以使用以下方法获取名称或 ID:

 $(this).attr('id');
 $(this).attr('name');

在悬停处理程序中

I'm not quote sure what you mean. But you can get the name or ID using:

 $(this).attr('id');
 $(this).attr('name');

in the hover handler

下壹個目標 2024-07-27 11:21:44
      $("#mouse").text("Mouse - Top: " + eleoffset.top + " - Left: " + eleoffset.left + " id " + $(this).id);

我认为

      $("#mouse").text("Mouse - Top: " + eleoffset.top + " - Left: " + eleoffset.left + " id " + $(this).id);

I think

花期渐远 2024-07-27 11:21:44

this.id 和 this.name 应该也可以工作。 不应该需要额外的 JQuery 调用。

this.id and this.name ought to work as well. Shouldn't need the extra JQuery call.

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