美文网首页
判断是否移动端

判断是否移动端

作者: 卓小生 | 来源:发表于2018-04-22 00:20 被阅读0次
    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;  
        }  
    }
    

    相关文章

      网友评论

          本文标题:判断是否移动端

          本文链接:https://www.haomeiwen.com/subject/gaqqlftx.html