以下是我想做的:
创建一个绝对定位、宽度和高度为100%的全球“ 牙冻容器”, 并创建一个比文档中所有其他元素都高的z- index 。
Here is my problem: When I create this container, my absolutely positioned element is blocking the click events that are bound to everything that is below it.
$(document).ready(function() {
$(document).on( click touchstart , .block , function() {
var $this = $(this);
if(!$this.hasClass("disabled")){
$this.addClass("disabled")
$this.openPopUp();
}
return false;
});
});
请注意,我正在使用来自jQuery 1. 7. 2的新.on () 呼叫, 我设置该呼叫的功能与. live () 相同。
为什么我的元素不接受我的点击?看起来我的手势区域挡住了它,但有办法绕过它吗?