判断是否微信浏览器
//平臺、設備和操作系統 let system = {win: false,mac: false,xll: false,ipad: false};//檢測平臺 let p = navigator.platform;system.win = p.indexOf("Win") == 0;system.mac = p.indexOf("Mac") == 0;system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);system.ipad = (navigator.userAgent.match(/iPad/i) != null) ? true : false;//跳轉語句,如果是手機訪問就自動跳轉到wap.baidu.com頁面 let ua = navigator.userAgent.toLowerCase();if (system.win || system.mac || system.xll || system.ipad) {if (ua.match(/MicroMessenger/i) == "micromessenger") {alert("在PC端微信上打開的");}else{alert("在PC端非微信上打開的");}} else {if (ua.match(/MicroMessenger/i) == "micromessenger") {alert("在手機端微信上打開的");} else {alert("在手機上非微信上打開的");}}
總結
- 上一篇: Git常用命令及其作用_艾孜尔江撰
- 下一篇: ISO14229之概述