当前位置:   article > 正文

navigator.userAgent.toLowerCase()判断浏览器的类型_window.navigator.useragent.tolowercase()

window.navigator.useragent.tolowercase()

navigator对象  包含有关浏览器的信息

userAgent 返回由客户机发送服务器的user-agent 头部的值

toLowerCase() 方法用于把字符串转换小写

match()  方法可在字符串内检索制定的值,或找到一个或者对个正则表达式的匹配

 

var ua = navigator.userAgent.toLowerCase();

ua.match(/android/i)) == "android"

ua.match(/iPhone/i)) == "iPhone"

ua.match(/iPad/i)) == "iPad"

ua.match(/weibo/i) == "weibo"

ua.indexOf('qq/')!= -1

ua.match(/MicroMessenger/i)=="micromessenger"   微信

ua.split('micromessenger')[1]

substring(1,6)

split(' ')[0]

split('.').length == 2

+ '.0'

< '6.0.2'

微信小于6.0.2版本返回3,微信大于等于6.0.2版本返回4,其它返回0

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/101820
推荐阅读
相关标签
  

闽ICP备14008679号