js判断当前是什么设备(安卓 or ios or PC)
Posted 奥特曼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断当前是什么设备(安卓 or ios or PC)相关的知识,希望对你有一定的参考价值。
if (/(iPhone|iPad|iPod|ios)/i.test(navigator.userAgent))
console.dir(navigator.userAgent)
this.phoneType = '苹果系统'
else if (/(android)/i.test(navigator.userAgent))
this.phoneType = '安卓系统'
else
this.phoneType = 'PC电脑'
;
判断是否在 微信浏览器运行
if (ua.match(/MicroMessenger/i) == 'micromessenger')
this.isweChat = '微信'
else
this.isweChat = '浏览器'
以上是关于js判断当前是什么设备(安卓 or ios or PC)的主要内容,如果未能解决你的问题,请参考以下文章