Home  >  Article  >  Web Front-end  >  Obtain the function code of the client operating system under js (1:vista,2:windows7,3:2000,4:xp,5:2003,6:2008)_javascript skills

Obtain the function code of the client operating system under js (1:vista,2:windows7,3:2000,4:xp,5:2003,6:2008)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:59:55868browse

Copy code The code is as follows:

//Get the client operating system (1:vista, 2:windows7,3:2000,4:xp,5:2003,6:2008)
function GetOSInfo(){
var _pf = navigator.platform;
var appVer = navigator.userAgent;
if(_pf == "Win32" || _pf == "Windows")
{
if(appVer.indexOf("WOW64")>-1){
_bit = "64-bit" ;
}else{
_bit = "32-bit";
}
if(appVer.indexOf("Windows NT 6.0") > -1 || appVer.indexOf("Windows Vista" ) > -1)
{
if(_bit=='64-bit' || appVer.indexOf("Windows Vista") > -1){
return 'Windows_vista ' _bit;
}else{
return "Unknow1";
}
}else if(appVer.indexOf("Windows NT 6.1") > -1 || appVer.indexOf("Windows 7") > -1) {
if(_bit=='32-bit' || appVer.indexOf("Windows 7") > -1){
return 'Windows_7 ' _bit;
}else{
return "Unknow";
}
}else {
try{
var _winName = Array('2000','XP','2003');
var _ntNum = appVer. match(/Windows NT 5.d/i).toString();
return 'Windows_' _winName[_ntNum.replace(/Windows NT 5.(d)/i,"$1")] " " _bit;
}catch(e){return 'Windows';}
}
}else if(_pf == "Mac68K" || _pf == "MacPPC" || _pf == "Macintosh")
{
return "Mac";
}else if(_pf == "X11")
{
return "Unix";
}else if(String(_pf).indexOf( "Linux") > -1)
{
return "Linux";
}else
{
return "Unknow";
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn