首页 > 编程 > .NET > 正文

asp.net及javascript判断是否手机访问的方法

2024-07-10 12:54:25
字体:
来源:转载
供稿:网友

随着科技的不断发展,现在很多人都使用智能手机上网,但是当我们下载网站会通过判断不同的系统手机访问不同的网页,下面小编带大家一起来了解一下SPA的种类有哪些呢?感兴趣的朋友一起来看看。

/// <summary>/// 判断手机用户UserAgent/// </summary>/// <returns></returns>private bool IsMobile(){  HttpContext context = HttpContext.Current;  if (context != null)  {    HttpRequest request = context.Request;    if (request.Browser.IsMobileDevice)      return true;    string MobileUserAgent=System.Configuration.ConfigurationManager.AppSettings["MobileUserAgent"];    Regex MOBILE_REGEX = new Regex(MobileUserAgent);    if (string.IsNullOrEmpty(request.UserAgent) || MOBILE_REGEX.IsMatch(request.UserAgent.ToLower()))      return true;  }  return false;}

以下为web.config配置里边的

复制代码 代码如下:
<add key="MobileUserAgent" value="iphone|android|nokia|zte|huawei|lenovo|samsung|motorola|sonyericsson|lg|philips|gionee|htc|coolpad|symbian|sony|ericsson|mot|cmcc|iemobile|sgh|panasonic|alcatel|cldc|midp|wap|mobile|blackberry|windows ce|mqqbrowser|ucweb"/>

 

<script>var system ={  win : false,  mac : false,  xll : false  };//检测平台var p = navigator.platform;system.win = p.indexOf("Win") == 0;system.mac = p.indexOf("Mac") == 0;system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);//跳转语句if(system.win||system.mac||system.xll){  alert(system.mac)}else{  window.location.href="手机访问地址";}</script>上文就是错新技术频道小编介绍的asp.net及javascript判断是否手机访问的方法,看完后你明白了吗?感兴趣的朋友还可以多了解js.VeVb.com网站吧!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表