gpt4 book ai didi

ios - 如何检测 iOS 11+ Safari 和旧版本 Safari 中的隐私浏览?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:21:37 26 4
gpt4 key购买 nike

我需要检测用户是否在旧版本的 Safari 和 IOS 11 上的 Safari 中处于私有(private)模式。是否有涵盖两者的测试?

更新:这是一个尝试结合存储和 openDatabase try-catch block 的笔,基于下面的 jeprubio 解决方案

var isPrivate = false;

// Check private in iOS < 11
var storage = window.sessionStorage;
try {
console.log('first try for storage')
storage.setItem("someKeyHere", "test");
storage.removeItem("someKeyHere");
} catch (e) {
console.log('first catch')
if (e.code === DOMException.QUOTA_EXCEEDED_ERR && storage.length === 0) {
isPrivate = true;
}
}

// Check private in iOS 11: https://gist.github.com/cou929/7973956#gistcomment-2272103
try {
console.log('second try for opendb');
window.openDatabase(null, null, null, null);
} catch (e) {
console.log('second catch');
isPrivate = true;
}

console.log('isPrivate: ' + isPrivate)

alert((isPrivate ? 'You are' : 'You are not') + ' in private browsing mode');

https://codepen.io/anon/pen/zpMZjp

在 Safari 新版本 (11+) 正常浏览器模式下,在控制台上的 openDatabase 测试不会出错,但会进入第二个 catch 并且 isPrivate 被设置为 true。因此,在 Safari 11+ 中,非隐私模式也被检测为隐私模式。

最佳答案

试试这个:

var isPrivate = false;

// Check private in iOS < 11
var storage = window.sessionStorage;
try {
storage.setItem("someKeyHere", "test");
storage.removeItem("someKeyHere");
} catch (e) {
if (e.code === DOMException.QUOTA_EXCEEDED_ERR && storage.length === 0) {
isPrivate = true;
}
}

// Check private in iOS 11: https://gist.github.com/cou929/7973956#gistcomment-2272103
try {
window.openDatabase(null, null, null, null);
} catch (_) {
isPrivate = true;
}

alert((isPrivate ? 'You\'re' : 'You aren\'t') + ' in private browsing mode');

关于ios - 如何检测 iOS 11+ Safari 和旧版本 Safari 中的隐私浏览?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48169810/

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