js判断操作系统windows,ios,android(笔记)

Posted Mr,Read

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断操作系统windows,ios,android(笔记)相关的知识,希望对你有一定的参考价值。

使用JS判断用户使用的系统是利用浏览器的userAgent。

 navigator.userAgent:userAgent 获取了浏览器用于 HTTP 请求的用户代理头的值。
 navigator.platform:platform        获取运行浏览器的操作系统和(或)硬件平台。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<script type="text/javascript">
var u = navigator.userAgent;
var iswindows = (u.indexOf("Windows",0) != -1)?1:0;  
var ismac = (navigator.platform == "Mac68K") || (navigator.platform == "MacPPC") || (navigator.platform == "Macintosh") || (navigator.platform == "MacIntel");
var isandroid = u.indexOf(Android) > -1 || u.indexOf(Adr) > -1; 
var isios = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); 
if (isAndroid==true)
{
    self.location=‘‘;     #重定向方法
}
if (isiOS==true)
{
    self.location=‘‘; 
}
if (iswindows==true)
{
    self.location=‘‘
}
if (ismac==true)
{
    self.location=‘‘
}
</script>
</head>
<body>
</body>
</html>

 


以上是关于js判断操作系统windows,ios,android(笔记)的主要内容,如果未能解决你的问题,请参考以下文章

js判断手机端(Android手机还是iPhone手机)

JS判断客户端是安卓还是iOS

JS-判断用户使用的终端是安卓还是IOS

js判断手机是安卓还是ios

js 判断window操作系统 2种方法

js判断客户端是否是IOS系统