jquery determines whether the current device is a PC or a mobile terminal side

$(function(){

    var system = {
        win: false,
        mac: false,
        xll: false,
        ipad:false
    };

    //检测平台
    var p = navigator.platform;

    system.win = p.indexOf("Win") == 0;
    system.mac = p.indexOf("Mac") == 0;
    system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
    system.ipad = (navigator.userAgent.match(/iPad/i) != null)?true:false;

    if (system.win || system.mac || system.xll ||system.ipad) {
      
    } else {

       //some code;
    }

})

 

 

if(navigator.platform.indexOf('Win32')!=-1){ 
    //go to pc 
    
}else{ 
    // go to wab
    
}

 

navigator.platform    Platform property is a read-only string that declares running the browser and operating system (or) hardware platform

Guess you like

Origin www.cnblogs.com/chz1905/p/11098305.html