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 而不会消失。
与列表中的名称相同。在鼠标悬停时,应显示更多信息 div。单击时,应该会出现 div。
鼠标悬停效果起作用。但我无法实现点击效果。
[Here is a shortened example][1]
我认为你可以在睡觉时这样做......
谢谢凯
不确定我真的能回答你的问题,但这可能会有所帮助
而不是这个:
$('div'+'.nn_'+team_id).css("display", "block");
做这个:
$('div'+'.nn_'+team_id).show()
Jquery 也有隐藏元素的 .hide() 方法。.toggle() 也可以用来隐藏/显示。