手机浏览器判断 微信 支付宝

      if (/MicroMessenger/.test(window.navigator.userAgent)) { 
        return 1  //微信
      } else if (/AlipayClient/.test(window.navigator.userAgent)) { 
        return 2  //支付宝
      } else {
        return 3 //
      }

猜你喜欢

转载自www.cnblogs.com/gosh-hash/p/11101756.html