jQuery 获取鼠标悬停的对象
我有这样的代码:
$('*').mouseover(function() {
$('#log').text($('*').id);
});
当您将鼠标悬停在页面上的任何元素上时,我希望 #log
具有该元素的 id。显然上面的代码不起作用...我该怎么做?
I have this code:
$('*').mouseover(function() {
$('#log').text($('*').id);
});
When you mouse over any element on the page, I want #log
to have the id of that element. Obviously the code above doesn't work... How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在几乎所有 jQuery 回调中,“this”是正在执行回调的对象。
In almost all jQuery callbacks, "this" is the object on which the callback is being executed.
您还可以使用 event.target
You can also use event.target