gpt4 book ai didi

javascript - 如何使用 jQuery/JavaScript 检测 ios 设备并仅隐藏 iPhone 和 iPad 的 Bootstrap 模式?

转载 作者:行者123 更新时间:2023-11-28 21:15:54 24 4
gpt4 key购买 nike

这里附上我的 jQuery 代码:

$('.myModal').on('shown.bs.modal', function () { 
var width = $(window).width();
var testdevice = /iPhone|iPad|iPod/i.test(navigator.userAgent.toLowerCase());
if(!testdevice) { $(this).css('display','block !important'); $(this).show(); }
else{ $(this).css('display','none !important'); $(this).modal('toggle'); }
});

这是媒体查询:

@media(max-width: 360px){
.myModal{
display: none !important;
}
}

最佳答案

检测 iOS 设备,例如:

var iOS 将为 true 或 false

var iOS = ['iPad', 'iPhone', 'iPod'].indexOf(navigator.platform) >= 0;
if (iOS)
{
//Hide modal
}
else{
//show modal or do nothing
}

关于javascript - 如何使用 jQuery/JavaScript 检测 ios 设备并仅隐藏 iPhone 和 iPad 的 Bootstrap 模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41300002/

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