判断手机电脑微信 js

if ((navigator.userAgent.match(/(MicroMessenger)/i))) {
        //微信浏览器
        //location.href="";

    } else if ((navigator.userAgent.match(/(iPhone|iPod|ios|iPad)/i))) {
        //苹果设备
        // location.href="";

    } else if ((navigator.userAgent.match(/(Android)/i))) {
        //安卓设备
        //location.href="";
} else { //其他设备,如电脑端 //location.href=""; }
原文地址:https://www.cnblogs.com/aliblogs/p/5606349.html