jquery鼠标点击穿透的解决方法
jquery鼠标点击穿透的解决方法
<pre>
<div class="showcontainer" style="background:#000;display: block;">
<div class="dd" style="width:20%;height:3rem;background:#F00; position: absolute;left:20%;top:10%;">
<div class="ddd" style="width:100%;height:100%;position: absolute;left:0px;top:0px;background:#FF0"></div>
<div class="ss" style="width:20%;height:2rem;background:#0F0;position: absolute;left:20%;top:10%;">
</div>
</div>
</div>
</pre>
<pre>
$('.dd').on(START_EV, function() {
alert('dd')
})
$('.ss').on(START_EV, function() {
return false;
})
</pre>
点击了ss就阻止后面的代码运行了 因为穿透也是按照顺序运行的
如果遇到什么不懂的地方直接关注公众号留言(本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。)
作者:newmiracle
出处:https://www.cnblogs.com/newmiracle/