jquery判断是pc端还是移动端

原文地址:https://www.cnblogs.com/mo-cha/p/6038872.html

$(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;
    }
})

猜你喜欢

转载自blog.csdn.net/dataiyangu/article/details/85062209