gpt4 book ai didi

javascript - 检测浏览器是否在 Android 或 iOS 设备上运行

转载 作者:IT王子 更新时间:2023-10-29 02:51:57 24 4
gpt4 key购买 nike

我需要更改移动网站上的一些按钮和文本,具体取决于用户是在 Android 浏览器还是 iOS 浏览器上查看它。有可靠的方法来执行检查吗?

最佳答案

var isMobile = {
Windows: function() {
return /IEMobile/i.test(navigator.userAgent);
},
Android: function() {
return /Android/i.test(navigator.userAgent);
},
BlackBerry: function() {
return /BlackBerry/i.test(navigator.userAgent);
},
iOS: function() {
return /iPhone|iPad|iPod/i.test(navigator.userAgent);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};

关于javascript - 检测浏览器是否在 Android 或 iOS 设备上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12606245/

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