gpt4 book ai didi

jquery - 在 Ipad 设备上单击外部不适用于 Div Close

转载 作者:行者123 更新时间:2023-12-01 06:51:12 25 4
gpt4 key购买 nike

如果他们在 ipad 中点击该 div 之外的区域,我会尝试关闭该 div block ,但它不起作用。

谁能告诉我我做错了什么

    if (IOSDevice()) // this is custom function
{
$(document).bind('touchstart',function(event){
// alert(event.target.id);
if(event.target.id !="MyDivId"){
$('#MyDivId').hide()
event.stopPropagation();
}
});

}

最佳答案

$(document).on('touchstart', function (event) {
if (!$(event.target).closest('#MyDivId').length) {
$('#MyDivId').hide()
}
});

关于jquery - 在 Ipad 设备上单击外部不适用于 Div Close,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14720758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com