<SCRIPT LANGUAGE="JavaScript">

  function mobile_device_detect(url)

  {

  var thisOS=navigator.platform;

  var os=new Array("iPhone","iPod","iPad","android","Nokia","SymbianOS","Symbian","Windows Phone","Phone","Linux armv71","MAUI","UNTRUSTED/1.0","Windows CE","BlackBerry","IEMobile");

  for(var i=0;i<os.length;i++)

  {

  if(thisOS.match(os[i]))

  {

  window.location=url;

  }

  }

  //由于适当部分的手机体系不知道信息,这里是做临时性特别辨认

  if(navigator.platform.indexOf('iPad') != -1)

  {

  window.location=url;

  }

  //做这一部分是由于Android手机的内核也是Linux

  //可是navigator.platform显现信息不尽相同状况繁复,因而从浏览器下手,即用navigator.appVersion信息做判别

  var check = navigator.appVersion;

  if( check.match(/linux/i) )

  {

  //X11是UC浏览器的渠道 ,如果有其他特别浏览器也能够附加上条件

  if(check.match(/mobile/i) || check.match(/X11/i))

  {

  window.location=url;

  }

  }

  //类in_array函数

  Array.prototype.in_array = function(e)

  {

  for(i=0;i<this.length;i++)

  {

  if(this[i] == e)

  return true;

  }

  return false;

  }

  }

  mobile_device_detect("http://**.***.com");

  </SCRIPT>

  百度官方给出的手机跳转代码:

  <script src="http://siteapp.baidu.com/static/webappservice/uaredirect.js" type="text/javascript"></script>

  <script type="text/javascript">uaredirect("http://wap.xxxxxx.com","http://www.xxxxxx.com");</script>

  补白http://**.***.com这个当地留意填写你的手机网网址喔!

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:js判断手机访问跳转到手机站发布于2022-07-28 07:43:44

相关推荐