我使用HTML5创建了一个抽屉,其位置固定的z-index大于其背后的z-index(类似于Gmail android原生应用)。当切换(打开),点击任何链接后,它会点击它背后的内容。我使用zepto touch,并且“touchend”作为事件类型。 有任何线索如何解决?
答案 0 :(得分:2)
请尝试以下操作:
$(elem).on("touchend", function() {
... do your stuff ...
document.activeElement.blur();
});
您还可以尝试使用CSS将pointer-events: none;
设置为菜单后面的元素。然后在抽屉关闭时将其设置回“自动”。