基本信息
源码名称:JS获取当前操作系统
源码大小:6.16KB
文件格式:.html
开发语言:js
更新时间:2019-10-30
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
JS获取当前操作系统
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> /** author: Weihuan date: 2017-6-26 **/ var _AgentInfo = { deviceType: "", // pc or mobile OSname: "", // windows, Android, linux and so on... browserName: "", // chrome, safari, firefox, IE and so on... browserVer: "", // browser version, important if in IE environment. adaptType: 0, // A type value, Adapt to the screen due to width _init: function(){ _AgentInfo.setDeviceAndOS(); _AgentInfo.setBrowser(); }, setDeviceAndOS: function(){ var name = "unknown"; if(window.navigator.userAgent.indexOf("Android") != -1){ name = "Android"; }else if(window.navigator.userAgent.indexOf("iPhone") != -1){ name = "iPhone"; }else if(window.navigator.userAgent.indexOf("SymbianOS") != -1){ name = "SymbianOS"; }else if(window.navigator.userAgent.indexOf("Windows Phone") != -1){ name = "Windows Phone"; }else if(window.navigator.userAgent.indexOf("iPad") != -1){ name = "iPad"; }else if(window.navigator.userAgent.indexOf("iPod") != -1){ name = "iPod"; } if(name != "unknown"){ _AgentInfo.OSname = name; _AgentInfo.deviceType = "mobile"; return; } if (window.navigator.userAgent.indexOf("Windows NT 10.0")!= -1){ name="Windows 10"; }else if (window.navigator.userAgent.indexOf("Windows NT 6.2") != -1){ name="Windows 8"; }else if (window.navigator.userAgent.indexOf("Windows NT 6.1") != -1){ name="Windows 7"; }else if (window.navigator.userAgent.indexOf("Windows NT 6.0") != -1){ name="Windows Vista"; }else if (window.navigator.userAgent.indexOf("Windows NT 5.1") != -1){ name="Windows XP"; }else if (window.navigator.userAgent.indexOf("Windows NT 5.0") != -1){ name="Windows 2000"; }else if (window.navigator.userAgent.indexOf("Mac") != -1){ name="Mac/iOS"; }else if (window.navigator.userAgent.indexOf("X11") != -1){ name="UNIX"; }else if (window.navigator.userAgent.indexOf("Linux") != -1){ name="Linux"; } _AgentInfo.OSname = name; _AgentInfo.deviceType = "pc"; }, setBrowser: function(){ var nAgt = navigator.userAgent; var browserName = navigator.appName; var fullVersion = '' parseFloat(navigator.appVersion); var majorVersion = parseInt(navigator.appVersion,10); var nameOffset,verOffset,ix; if ((verOffset=nAgt.indexOf("Opera"))!=-1) { // In Opera, the true version is after "Opera" or after "Version" browserName = "Opera"; fullVersion = nAgt.substring(verOffset 6); if ((verOffset=nAgt.indexOf("Version"))!=-1) fullVersion = nAgt.substring(verOffset 8); } else if ( (nAgt.indexOf("Trident"))!=-1 ) { // ( ver >= ie7) In MSIE, the true version is after "MSIE" in userAgent if((verOffset=nAgt.indexOf("MSIE"))!=-1){ fullVersion = nAgt.substring(verOffset 5); }else { fullVersion = '11.0'; } if(fullVersion == 5){ fullVersion = "11.0"; } browserName = "IE"; } else if ((verOffset=nAgt.indexOf("Chrome"))!=-1) { // In Chrome, the true version is after "Chrome" browserName = "Chrome"; fullVersion = nAgt.substring(verOffset 7); } else if ((verOffset=nAgt.indexOf("Safari"))!=-1) { // In Safari, the true version is after "Safari" or after "Version" browserName = "Safari"; fullVersion = nAgt.substring(verOffset 7); if ((verOffset=nAgt.indexOf("Version"))!=-1) fullVersion = nAgt.substring(verOffset 8); } else if ((verOffset=nAgt.indexOf("Firefox"))!=-1) { // In Firefox, the true version is after "Firefox" browserName = "Firefox"; fullVersion = nAgt.substring(verOffset 8); } else if ( (nameOffset=nAgt.lastIndexOf(' ') 1) < (verOffset=nAgt.lastIndexOf('/')) ){ // In most other browsers, "name/version" is at the end of userAgent browserName = nAgt.substring(nameOffset,verOffset); fullVersion = nAgt.substring(verOffset 1); if (browserName.toLowerCase()==browserName.toUpperCase()) { browserName = navigator.appName; } } if ((ix=fullVersion.indexOf(";"))!=-1) // trim the fullVersion string at semicolon/space if present fullVersion=fullVersion.substring(0,ix); if ((ix=fullVersion.indexOf(" "))!=-1) fullVersion=fullVersion.substring(0,ix); majorVersion = parseInt('' fullVersion,10); if (isNaN(majorVersion)) { fullVersion = '' parseFloat(navigator.appVersion); majorVersion = parseInt(navigator.appVersion,10); } _AgentInfo.browserName = browserName; _AgentInfo.browserVer = fullVersion; }, isMobile: function(){ if(_AgentInfo.deviceType == "mobile"){ return true; } return false; }, setAdaptType:function (){ // A type value, Adapt to the screen due to width. For convenient if(screen.width <= 374){ _AgentInfo.adaptType = 0; }else if(screen.width <= 413){ _AgentInfo.adaptType = 1; }else { _AgentInfo.adaptType = 2; } } } _AgentInfo._init(); alert(_AgentInfo.OSname); </script> </head> <body> </body> </html>