我知道这是个老问题,但我只是在没有伪子(但是伪包装器)的情况下成功地做到了这一点。如果将父级设置为“no”,则pointer-events,然后是个孩子div带着pointer-events设为auto,它起作用:)请注意<img>标记(例如)不起作用。也要记住pointer-events到auto对于有自己的事件侦听器的其他子程序,否则它们将失去单击功能。div.parent { pointer-events: none;}div.child { pointer-events: auto;}div.parent:hover { background: yellow;} <div class="parent"> parent - you can hover over here and it won't trigger <div class="child">hover over the child instead!</div></div>