gpt4 book ai didi

javascript - 使用 JavaScript 检测 iPod 或 Iphone?

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

我有一个场景,我需要检测设备是 iPod 还是 iPhone。 navigator.userAgent/navigator.platform 没有设备信息。

最佳答案

这是我用来检测 iOS 设备的方法:

function is_little_ithing() {
return (navigator.userAgent.indexOf('iPod') > -1 ||
navigator.userAgent.indexOf('iPhone') > -1);
}

function is_big_ithing() {
return (navigator.userAgent.indexOf('iPad') > -1);
}

function is_ithing() {
return (is_little_ithing() || is_big_ithing());
}

关于javascript - 使用 JavaScript 检测 iPod 或 Iphone?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58501607/

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