前端学习记录笔记

设备监测

2019-03-26  本文已影响0人  VictoriaZsj

//设备检测

function detectmob() {

    if( navigator.userAgent.match(/Android/i)

    || navigator.userAgent.match(/webOS/i)

    || navigator.userAgent.match(/iPhone/i)

    || navigator.userAgent.match(/iPad/i)

    || navigator.userAgent.match(/iPod/i)

    || navigator.userAgent.match(/BlackBerry/i)

    || navigator.userAgent.match(/Windows Phone/i)

    ){

    return true;

    }

    else {

    return false;

    }

}

alert(detectmob());

上一篇下一篇

猜你喜欢

热点阅读