jQuery:从类中获取 id
我有很多 div,我想淡化这个悬停的 div。
我如何获取悬停的 div 的 id?
除了使用“onmouseover”调用函数(并发送 id)之外,还有什么办法可以做到这一点吗?
谢谢!
I have a lot of div's and I want to fade this one who is hovered.
How i can get the id of the hovered div?
Is there anyway to do that except calling function(and sendind the id) with "onmouseover"?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
使用 attr 函数获取元素的 ID
try something like
to get the ID of an element you use the attr function
将鼠标悬停在这些 div 上...
HTML:
JavaScript:
On hover on these div's...
HTML:
JavaScript:
您可以在应用动画后设置一个类来标记 div,以便您可以轻松识别悬停的 div。
希望它有帮助:)
You could set a class to flag the divs after you applied the animation so you can easily identify hovered divs.
Hope it helps :)