gpt4 book ai didi

javascript - 导航器.userAgent

转载 作者:搜寻专家 更新时间:2023-11-01 05:17:19 26 4
gpt4 key购买 nike

我正在尝试检测浏览器是否为 Safari。如果是这样,那么才做点什么。在所有其他浏览器中,执行其他操作:

if ( navigator.userAgent.toLowerCase().indexOf('safari') == -1) {
//if safari execute some function
} else {
// if other browsers execute other function
}

但是,我想我没有使用正确的方法,因为它不起作用。 :P

最佳答案

if(typeof navigator.vendor!='undefined') &&
navigator.vendor.toLowerCase().indexOf('apple')!=-1){
...
}

关于javascript - 导航器.userAgent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4986993/

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