首页 > 其他 > 详细

h5页面多端判断

时间:2020-03-13 21:22:56      阅读:103      评论:0      收藏:0      [点我收藏+]
  var u = navigator.userAgent,
    isAndroid = (u.indexOf(‘Android‘) > -1 || u.indexOf(‘Adr‘) > -1) ? true : false,
    isiOS = (u.indexOf(‘iPhone‘) > -1 || u.indexOf(‘iPad‘) > -1) ? true : false,
    isWeiXin = (u.toLowerCase().match(/MicroMessenger/i) == ‘micromessenger‘) ? true : false,
    url = window.location.href,
    isinApp = (url.toLowerCase().indexOf("isinapp") > -1) ? true : false,
    firsturl = window.location.origin + "/",
    xqid = window.location.pathname.slice(7, -5),
    number_stId = window.location.pathname.indexOf("-goods");
  stId = window.location.pathname.slice(7, number_stId), opendappurl = ‘‘, scrchStr = ‘‘, time = new Date() * 1, session = window.sessionStorage, ifr = window.document.createElement("iframe");

  if (isAndroid) {
    //安卓嵌套
  } else if (isiOS) {
    //苹果嵌套
  };
  if (!isinApp) {//非小程序
    if (!isWeiXin) {//非微信
      if (isAndroid) {//非安卓
       
      } else if (isiOS) {//非iops

      };
    };
  };

h5页面多端判断

原文:https://www.cnblogs.com/iqiao/p/12488901.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!