/** * 判断平台 */ function getPgjs() { var agent = navigator.userAgent.toLowerCase(); console.log(agent) var res = agent.match(/android/); if (res == "android") return res; res = agent.match(/iphone/); if (res == "iphone") return "ios"; res = agent.match(/ipad/); if (res == "ipad") return "ios"; res = agent.match(/windows/); if (res == "windows") return "wp"; return "pc"; },