美文网首页
js 判断设备是pc 还是 移动设备

js 判断设备是pc 还是 移动设备

作者: 八妹sss | 来源:发表于2019-10-17 19:32 被阅读0次
    
    // 判断苹果、安卓、pc
    if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) { //判断iPhone|iPad|iPod|iOS
      window.location.href ="iPhone.html";
    } else if (/(Android)/i.test(navigator.userAgent)) {  //判断Android
      window.location.href ="Android.html";
    } else { //pc
      window.location.href ="pc.html";
    };
    

    摘自:https://blog.csdn.net/qq_40542728/article/details/92652132

    相关文章

      网友评论

          本文标题:js 判断设备是pc 还是 移动设备

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