window.onload = function () {
    var u = navigator.userAgent;
    if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {//安卓手机
    alert("安卓手机");
    // window.location.href = "mobile/index.html";
    } else if (u.indexOf('iPhone') > -1) {//苹果手机
    // window.location.href = "mobile/index.html";
    alert("苹果手机");
    } else if (u.indexOf('Windows Phone') > -1) {//winphone手机
    alert("winphone手机")
    // window.location.href = "mobile/index.html";
    }
}

 

相关文章:

  • 2021-09-28
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2021-11-14
相关资源
相似解决方案