Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的悬停事件的小提琴。
目前在悬停时,同一类的所有 div 都会被切换。我只想切换一个 div(悬停在上面的那个)。我尝试了一些过滤器,但似乎无法解决。
帮助将不胜感激。
.foo2您需要在同一链接中搜索 a .container:
.foo2
.container
$(".container a").hover(function() { $('.foo2', $(this).parent()).toggle(); });