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.
当我将鼠标悬停在一个span.label元素上时,我想显示一个子span.dM元素。这在下面的小提琴中完美地发生了。
span.label
span.dM
这是小提琴
我想要实现的是,当我将鼠标悬停在span.dM出现的位置时,我应该得到一个灰色背景span.label。目前我必须将鼠标悬停在文本“一些文本”上才能看到span.dM元素。
我想在不使用任何宽度的情况下解决这个问题。有什么建议么 ?提前致谢。
您不能将鼠标悬停在display:none. 如果可能,请使用 隐藏跨度visibility:hidden。这样元素就不会从文档流中删除,您可以将鼠标悬停在它上面。
display:none
visibility:hidden
http://jsfiddle.net/z4JBG/
我已经分叉了你的 jsfiddle,使用 jquery 来实现你想要的效果。
http://jsfiddle.net/ZrxGf/