美文网首页
判断页面是在移动端还是PC端

判断页面是在移动端还是PC端

作者: 竹小星 | 来源:发表于2018-03-16 13:24 被阅读80次
    window.location.href = /Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent) ? "https://www.baidu.com/" :  "http://news.baidu.com/";
    
    if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
        window.location.href = "https://www.baidu.com/";
    } else {
        window.location.href = "http://news.baidu.com/";
    }
    

    相关文章

      网友评论

          本文标题:判断页面是在移动端还是PC端

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