美文网首页
js判断当前设备(加载pc端页面或者加载移动端页面)

js判断当前设备(加载pc端页面或者加载移动端页面)

作者: blank的小粉er | 来源:发表于2017-06-14 14:59 被阅读0次
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
    </head>
       
    <body>
        
       <h1>电脑端</h1>
        <script>
        function isMobile() {
            if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)))
                return true;
            else
                return false;
        }
        
      //地址自己修改成你的手机端地址
        if (isMobile() !== false)
            window.location.href = "http://www.baidu.com";
        </script>
    </body>
    
    </html>
    
    

    相关文章

      网友评论

          本文标题:js判断当前设备(加载pc端页面或者加载移动端页面)

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