z 索引和点击事件
所以我有这个三列布局。 http://jsfiddle.net/quickburp/fwQq4/50/ ..
现在,如果您单击 id 为“left”的 div 不会触发警报。这是因为带有类包装器的 div 位于其上方。甚至 div#left 上的 css 属性cursor:pointer 也因此无法正常工作。
我尝试过 z-index..
如何获得包装器上方的左右 div。并使光标:指针起作用并且单击事件起作用
So i have this three column layout. http://jsfiddle.net/quickburp/fwQq4/50/ ..
Now, if you click on the div with id "left" no alert is triggered. This is because the div with class wrapper is above it. Even the css property cursor:pointer on div#left is not functioning because of this.
I have tried z-index..
How can I get the left and right div above the wrapper. And get the cursor:pointer to work and the click events to work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从
.wrapper {}
中删除z-index: 0;
remove
z-index: 0;
from.wrapper {}