因此,我有一个希望单击的整个列表项,但是其中的链接也需要单击。原来您不能嵌套<a>
标记,所以我制作了列表项和<a>
兄弟姐妹,并将它们放置为重叠。
为了使列表的链接正常工作,我必须禁用指针事件,以便它传递到下面的链接。然后,我必须在容器中的每个容器上重新启用指针事件,因为它们的父对象将被禁用。
现在的问题是,当您将鼠标悬停在列表中的链接上时,将不再触发后台悬停。
我希望如此,当您将鼠标悬停在容器内的链接上时,将显示链接悬停(href显示在底部),但是下面的链接仍处于悬停状态。
这是示例,请注意,当您将鼠标悬停在框内的链接上时,框如何停止悬停。
#listlink {
height: 100px; width: 100px; top:0; left:0;
position: absolute;
background: rgba(255,0,0,0.4);
}
#listlink:hover { background: rgba(255,0,0,0.8);}
#listitem {
height: 100px; width: 100px; top:0; left:0;
position: absolute;
z-index: 10;
pointer-events: none;
}
#childlink {
background: rgba(0,0,255,0.4);
pointer-events: auto;
}
#childlink:hover { background: rgba(0,0,255,0.8);}
<a id="listlink" href="#listlink"></a>
<div id="listitem">
Text <a id="childlink" href="#childlink">top link</a> text
</div>
最佳答案
而是要实现所需的行为,可以将整个容器放置在具有固定relative
和width
的height
容器中,如图所示。并对其应用hover
效果,而不是#listlink
。
.container {
position: relative;
height: 100px;
width: 100px;
background: rgba(255, 0, 0, 0.4);
}
.container:hover {
background: rgba(255, 0, 0, 0.8);
}
#listlink {
/* height: 100px;
width: 100px;*/
top: 0;
bottom:0;
left: 0;
right:0;
position: absolute;
/*background: rgba(255, 0, 0, 0.4);*/
}
/*
#listlink:hover {
background: rgba(255, 0, 0, 0.8);
}*/
#listitem {
/* height: 100px;
width: 100px;*/
top: 0;
bottom:0;
left: 0;
right:0;
position: absolute;
z-index: 10;
pointer-events: none;
}
#childlink {
background: rgba(0, 0, 255, 0.4);
pointer-events: auto;
}
#childlink:hover {
background: rgba(0, 0, 255, 0.8);
}
<div class='container'>
<a id="listlink" href="#listlink"></a>
<div id="listitem">
Text <a id="childlink" href="#childlink">top link</a> text
</div>
</div>
关于html - 如何在不禁用指针事件的情况下使其通过元素?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49099357/