function detectOS() {
navigator.userAgent;
return navigator.platform
}
document.writeln("您的操作系统是:" + detectOS());
if(detectOS().match(/Win|Linux|MAC/i)){
document.writeln("<br> 请使用移动设备访问");
}
function detectOS() {
navigator.userAgent;
return navigator.platform
}
document.writeln("您的操作系统是:" + detectOS());
if(detectOS().match(/Win|Linux|MAC/i)){
document.writeln("<br> 请使用移动设备访问");
}