码迷,mamicode.com
首页 > Windows程序 > 详细

js判断电脑是windows系统还是mac系统

时间:2020-06-18 21:37:17      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:fun   aci   windows64   index   ||   windows   function   func   test   

function OSnow(){
              var agent = navigator.userAgent.toLowerCase();
              var isMac = /macintosh|mac os x/i.test(navigator.userAgent);
              if (agent.indexOf("win32") >= 0 || agent.indexOf("wow32") >= 0) {
                alert("这是windows32位系统");
                }
              if (agent.indexOf("win64") >= 0 || agent.indexOf("wow64") >= 0) {
                alert("这是windows64位系统");
              }
              if(isMac){
                alert("这是mac系统");
              }
            }

 

js判断电脑是windows系统还是mac系统

标签:fun   aci   windows64   index   ||   windows   function   func   test   

原文地址:https://www.cnblogs.com/zhenguo-chen/p/13159888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!