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.
所以有两个元素在彼此之上。一旦元素(在顶部的元素下方)悬停,我如何调用函数?
非常感谢,我真的需要这个来工作:s
您可以使用 CSSpointer-events属性:
pointer-events
除了指示该元素不是鼠标事件的目标之外,值 none 还指示鼠标事件“通过”该元素并以该元素“下方”的任何内容为目标。
#top { pointer-events: none; } $('#underneath').hover(function(){ .... })