获取
;使用 jQuery 命名

发布于 2024-11-25 17:42:22 字数 215 浏览 0 评论 0原文

$("body").click(function() {
       var item = "<h1>You clicked on: #" + $(this).attr('id');
       $(".position").html(item);
     });

为什么这给我一个空白的答复?我希望它能够识别单击的每个 HTML 对象的 ID。

$("body").click(function() {
       var item = "<h1>You clicked on: #" + $(this).attr('id');
       $(".position").html(item);
     });

Why is this giving me a blank response? I want it to identify each HTML object's ID clicked.

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

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

发布评论

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

评论(2

时光是把杀猪刀 2024-12-02 17:42:22

试试这个

$("body").click(function(e) {
       var item = "<h1>You clicked on: #" + $(e.target).attr('id') + "</h1>";
       $(".position").html(item);
     });

Try this

$("body").click(function(e) {
       var item = "<h1>You clicked on: #" + $(e.target).attr('id') + "</h1>";
       $(".position").html(item);
     });
菊凝晚露 2024-12-02 17:42:22

this 指的是您注册处理程序的对象,而不是事件的原始源。
在您的情况下,this 始终是

您需要 e.target,它指的是直接触发事件的元素。
(其中 e 是处理函数的第一个参数)

this refers the the object that you registered the handler with, not the original source of the event.
In your case, this is always the <body>.

You want e.target, which refers to the element that directly triggered the event.
(where e is the first argument of the handler function)

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