关于javascript:什么是检测移动设备的最佳方法?

What is the best way to detect a mobile device?

是否有可靠的方法来检测用户是否在jquery中使用移动设备?类似于css@media属性的内容?如果浏览器在手持设备上,我想运行其他脚本。

jquery $.browser函数不是我想要的。


您可以使用简单的javascript来检测它,而不是使用jquery:

1
2
3
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
 // some code..
}

或者您可以将两者结合起来,使它通过jquery更容易访问…

1
$.browser.device = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));

现在,对于上述所有设备,$.browser将返回"device"

注:jquery v1.9.1删除了$.browser。但是可以使用jquery迁移插件代码来使用它

更全面的版本:

1
2
3
4
5
6
var isMobile = false; //initiate as false
// device detection
if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent)
    || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) {
    isMobile = true;
}


对我来说,小是美的,所以我用这种方法:

在CSS文件中:

1
2
3
4
/* Smartphones ----------- */
@media only screen and (max-width: 760px) {
  #some-element { display: none; }
}

在jquery/javascript文件中:

1
2
3
4
5
6
7
8
9
10
11
12
13
$( document ).ready(function() {      
    var is_mobile = false;

    if( $('#some-element').css('display')=='none') {
        is_mobile = true;      
    }

    // now i can use is_mobile to run javascript conditionally

    if (is_mobile == true) {
        //Conditional script here
    }
 });

我的目标是让我的网站"移动友好"。所以我使用CSS媒体查询根据屏幕大小显示/隐藏元素。

例如,在我的手机版本中,我不想激活Facebook类似的框,因为它会加载所有这些配置文件图像和东西。这对移动访客不好。因此,除了隐藏container元素之外,我还在jquery代码块(上面)内执行此操作:

1
2
3
4
5
6
7
8
9
if(!is_mobile) {
    (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src ="//connect.facebook.net/pt_PT/all.js#xfbml=1&appId=210731252294735";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));
}

你可以在http://lisboaauttica.com上看到它的实际应用。

我还在研究手机版本,所以在写这篇文章的时候,它看起来仍然不太合适。

由Dekin88更新

有一个内置的Javascript API用于检测媒体。不要使用上述解决方案,只需使用以下内容:

1
2
3
4
5
6
7
$( document ).ready(function() {      
    var isMobile = window.matchMedia("only screen and (max-width: 760px)").matches;

    if (isMobile) {
        //Conditional script here
    }
 });

浏览器支持:http://canius.com/feat=matchmedia

这种方法的优点是,它不仅简单、简短,而且在必要时可以有条件地分别针对不同的设备(如智能手机和平板电脑),而无需在DOM中添加任何虚拟元素。


根据使用用户代理的Mozilla浏览器检测:

In summary, we recommend looking for the string"Mobi" anywhere in the User Agent to detect a mobile device.

这样地:

1
2
3
if (/Mobi/.test(navigator.userAgent)) {
    // mobile!
}

这将匹配所有常见的移动浏览器用户代理,包括移动Mozilla、Safari、IE、Opera、Chrome等。

Android更新

Ericl还建议将Android作为用户代理进行测试,因为平板电脑的chrome用户代理字符串不包括"mobi"(不过,手机版本也包括):

1
2
3
if (/Mobi|Android/i.test(navigator.userAgent)) {
    // mobile!
}


一个简单有效的一行程序:

1
function isMobile() { return ('ontouchstart' in document.documentElement); }

但是上面的代码没有考虑到带触摸屏的笔记本电脑的情况。因此,我提供了基于@julian解决方案的第二个版本:

1
2
3
4
function isMobile() {
  try{ document.createEvent("TouchEvent"); return true; }
  catch(e){ return false; }
}


你想检测一个移动设备所做的是有点过于接近"浏览器嗅探"的概念IMO。做一些功能检测可能会更好。像http://www.modernizer.com/这样的库可以帮助解决这个问题。

例如,移动电话和非移动电话之间的线路在哪里?它每天都变得越来越模糊。


不是jquery,但我发现了这个:http://detectmobilebrowser.com/

它提供了多种语言的脚本来检测移动浏览器,其中一种是javascript。这可以帮助你找到你想要的。

但是,由于您使用的是jquery,您可能希望了解jquery.support集合。它是用于检测当前浏览器功能的属性集合。文档如下:http://api.jquery.com/jquery.support/

因为我不知道你到底想完成什么,所以我不知道哪一个最有用。

尽管如此,我认为您最好的选择是使用服务器端语言(如果这是一个选项的话)将脚本重定向或编写到输出。由于您并不真正了解移动浏览器X的功能,因此在服务器端执行检测和更改逻辑将是最可靠的方法。当然,如果你不能使用服务器端的语言,所有这些都是没有意义的。


有时需要知道客户使用哪个品牌的设备来显示特定于该设备的内容,比如iPhone商店或Android市场的链接。现代化是伟大的,但只显示您的浏览器功能,如HTML5或闪存。

下面是jquery中我的useragent解决方案,用于为每种设备类型显示不同的类:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*** sniff the UA of the client and show hidden div's for that device ***/
var customizeForDevice = function(){
    var ua = navigator.userAgent;
    var checker = {
      iphone: ua.match(/(iPhone|iPod|iPad)/),
      blackberry: ua.match(/BlackBerry/),
      android: ua.match(/Android/)
    };
    if (checker.android){
        $('.android-only').show();
    }
    else if (checker.iphone){
        $('.idevice-only').show();
    }
    else if (checker.blackberry){
        $('.berry-only').show();
    }
    else {
        $('.unknown-device').show();
    }
}

这个解决方案来自图形狂人http://graphicmaniacs.com/note/detecting-iphone-ipod-ipad-android-and-blackberry-browser-with-javascript-and-php/


在:http://www.abeautifulsite.net/blog/2011/11/detecting mobile devices with javascript/中找到了一个解决方案。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var isMobile = {
    Android: function() {
        return navigator.userAgent.match(/Android/i);
    },
    BlackBerry: function() {
        return navigator.userAgent.match(/BlackBerry/i);
    },
    iOS: function() {
        return navigator.userAgent.match(/iPhone|iPad|iPod/i);
    },
    Opera: function() {
        return navigator.userAgent.match(/Opera Mini/i);
    },
    Windows: function() {
        return navigator.userAgent.match(/IEMobile/i);
    },
    any: function() {
        return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
    }
};

然后,为了验证它是否是移动设备,您可以使用以下方法进行测试:

1
2
3
if(isMobile.any()) {
   //some code...
}


如果"移动"的意思是"小屏幕",我使用这个:

1
2
3
var windowWidth = window.screen.width < window.outerWidth ?
                  window.screen.width : window.outerWidth;
var mobile = windowWidth < 500;

在iPhone上,您将看到window.screen.width为320。在Android上,你最终会得到一个480的window.outerwidth(尽管这取决于Android)。iPad和Android平板电脑将返回768这样的数字,这样它们就可以获得你想要的完整视图。


如前所述,如果您使用Modernizer,那么很容易使用Modernizr.touch

但是,为了安全起见,我更喜欢使用Modernizr.touch和用户代理测试的组合。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var deviceAgent = navigator.userAgent.toLowerCase();

var isTouchDevice = Modernizr.touch ||
(deviceAgent.match(/(iphone|ipod|ipad)/) ||
deviceAgent.match(/(android)/)  ||
deviceAgent.match(/(iemobile)/) ||
deviceAgent.match(/iphone/i) ||
deviceAgent.match(/ipad/i) ||
deviceAgent.match(/ipod/i) ||
deviceAgent.match(/blackberry/i) ||
deviceAgent.match(/bada/i));

if (isTouchDevice) {
        //Do something touchy
    } else {
        //Can't touch this
    }

如果你不使用现代化,你可以简单地用('ontouchstart' in document.documentElement)替换上面的Modernizr.touch功能。

另外请注意,测试用户代理iemobile将为您提供比Windows Phone更广泛的检测到的Microsoft移动设备。

也看到这个问题


我知道这个问题的答案有很多,但从我看到的方式,没有一个答案的方法来解决这个问题。

CSS的使用确定的宽度(媒体查询)是基于Web的文档样式应用在宽度。为什么需要使用宽度在JavaScript?

例如,在引导的移动媒体的查询,在第一时间4)单元/破发点:

  • 额外的设备是小型和在768像素。
  • 范围从小型设备到991 768像素。
  • 介质的设备范围从1992到1199元。
  • 在大型设备和1200像素。

我们可以使用JavaScript来解决我们的问题,这就为好。

第一,我们将创建一个窗口大小的函数,那么返回值和A是允许美国看看尺寸是:观看我们的应用设备

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var getBrowserWidth = function(){
    if(window.innerWidth < 768){
        // Extra Small Device
        return"xs";
    } else if(window.innerWidth < 991){
        // Small Device
        return"sm"
    } else if(window.innerWidth < 1199){
        // Medium Device
        return"md"
    } else {
        // Large Device
        return"lg"
    }
};

现在我们已经设置的功能,我们可以调用它的价值:在商店

1
var device = getBrowserWidth();

你的问题是什么

I would like to run a different script if the browser is on a handheld device.

现在,我们有我们的设备信息所有这是左是if语句:

1
2
3
if(device ==="xs"){
  // Enter your script for handheld devices here
}

这里是一个例子:在codepen http://codepen.io /王/笔/ jweewg雅各


如果你不是特别担心小显示器,你可以使用宽度/高度检测。这样,如果宽度小于一定的大小,移动站点就会被抛出。这可能不是一个完美的方法,但对于多个设备来说,它可能是最容易检测的方法。您可能需要为iPhone4(大分辨率)安装一个特定的设备。


你不能依赖于navigator.userAgent,不是每个设备都会显示它真正的操作系统。例如,在我的HTC上,它取决于设置("使用移动版本"开/关)。在http://my.clockodo.com上,我们只使用screen.width检测小型设备。不幸的是,在某些Android版本中,有一个screen.width的bug。您可以通过这种方式与useragent结合使用:

1
2
3
4
5
6
7
if(screen.width < 500 ||
 navigator.userAgent.match(/Android/i) ||
 navigator.userAgent.match(/webOS/i) ||
 navigator.userAgent.match(/iPhone/i) ||
 navigator.userAgent.match(/iPod/i)) {
alert("This is a mobile device");
}


JavaScript的:在一个线

1
var isMobile = ('ontouchstart' in document.documentElement && navigator.userAgent.match(/Mobi/));

如果用户代理包含的摩比(AS发送和ontouchstart MDN)是可用的,它是可能的一个移动设备。


我很惊讶没有人指出一个好的网站:http://detectmobilebrowsers.com/它已经准备好用不同语言编写用于移动检测的代码(包括但不限于):

  • 阿帕奇
  • ASP
  • C.*
  • 伊斯
  • JavaScript
  • 恩吉克斯
  • PHP
  • 珀尔
  • Python
  • 栏杆

如果您还需要检测平板电脑,只需检查关于部分的附加regex参数。

Android tablets, iPads, Kindle Fires and PlayBooks are not detected by
design. To add support for tablets, add |android|ipad|playbook|silk to
the first regex.


我建议您查看http://wurfl.io/

简而言之,如果导入一个小的javascript文件:

1
<script type='text/javascript' src="//wurfl.io/wurfl.js">

剩下的JSON对象如下:

1
2
3
4
5
{
"complete_device_name":"Google Nexus 7",
"is_mobile":true,
"form_factor":"Tablet"
}

(当然,假设您使用的是Nexus7),您将能够执行以下操作:

1
2
3
if(WURFL.is_mobile) {
    //dostuff();
}

这就是你要找的。

免责声明:我为提供此免费服务的公司工作。


为了添加额外的控制层,我使用HTML5存储来检测它是使用移动存储还是桌面存储。如果浏览器不支持存储,我有一个移动浏览器名称数组,并将用户代理与数组中的浏览器进行比较。

这很简单。功能如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Used to detect whether the users browser is an mobile browser
function isMobile() {
    ///<summary>Detecting whether the browser is a mobile browser or desktop browser</summary>
    ///<returns>A boolean value indicating whether the browser is a mobile browser or not</returns>

    if (sessionStorage.desktop) // desktop storage
        return false;
    else if (localStorage.mobile) // mobile storage
        return true;

    // alternative
    mobile = ['iphone','ipad','android','blackberry','nokia','opera mini','windows mobile','windows phone','iemobile','tablet','mobi'];
    var ua=navigator.userAgent.toLowerCase();
    for (var i in mobile) if (ua.indexOf(mobile[i]) > -1) return true;

    // nothing found.. assume desktop
    return false;
}


看看这篇文章,它给出了一个非常好的代码片段,说明在检测到触摸设备时要做什么,或者如果调用了TouchStart事件,该怎么做:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$(function(){
  if(window.Touch) {
    touch_detect.auto_detected();
  } else {
    document.ontouchstart = touch_detect.surface;
  }
}); // End loaded jQuery
var touch_detect = {
  auto_detected: function(event){
    /* add everything you want to do onLoad here (eg. activating hover controls) */
    alert('this was auto detected');
    activateTouchArea();
  },
  surface: function(event){
    /* add everything you want to do ontouchstart here (eg. drag & drop) - you can fire this in both places */
    alert('this was detected by touching');
    activateTouchArea();
  }
}; // touch_detect
function activateTouchArea(){
  /* make sure our screen doesn't scroll when we move the"touchable area" */
  var element = document.getElementById('element_id');
  element.addEventListener("touchstart", touchStart, false);
}
function touchStart(event) {
  /* modularize preventing the default behavior so we can use it again */
  event.preventDefault();
}


这里有一个函数,您可以使用它来获得关于您是否在移动浏览器上运行的正确/错误答案。是的,这是浏览器嗅探,但有时这正是您所需要的。

1
2
3
4
5
6
7
8
9
function is_mobile() {
    var agents = ['android', 'webos', 'iphone', 'ipad', 'blackberry'];
    for(i in agents) {
        if(navigator.userAgent.match('/'+agents[i]+'/i')) {
            return true;
        }
    }
    return false;
}


我会建议使用以下字符串的组合),是检查是否使用的设备类型。

Mobi文档字符串是通过Mozilla的建议。但是,一些旧的平板电脑不会返回true如果是Mobi,因此我们应该使用Tablet字符串的床。

同样,在不安全的侧iPadiPhone字符串可以被用来检查的设备类型。

大多数新的设备是独立的Mobitrue返回字符串。

1
2
3
if (/Mobi|Tablet|iPad|iPhone/.test(navigator.userAgent)) {
    // do something
}


知道这是唯一的移动设备TouchEvent,也许最简单的方法是检查是否用户设备可以支持它:

1
2
3
4
5
6
7
8
9
function isMobile() {
  try {
       document.createEvent("TouchEvent");
       return true;
     }
  catch(e) {
       return false;
     }
}


所有答案都使用用户代理来检测浏览器,但是基于用户代理的设备检测不是很好的解决方案,更好的解决方案是检测触摸设备等功能(在新的jquery中,它们删除了$.browser,而使用$.support)。

要检测手机,您可以检查触摸事件:

1
2
3
4
function is_touch_device() {
  return 'ontouchstart' in window // works on most browsers
      || 'onmsgesturechange' in window; // works on ie10
}

从什么是使用javascript检测"触摸屏"设备的最佳方法中获取?


基于http://detectmobilebrowser.com的简单函数/

1
2
3
4
function isMobile() {
    var a = navigator.userAgent||navigator.vendor||window.opera;
    return /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4));
}

使用此:

1
/**  * jQuery.browser.mobile (http://detectmobilebrowser.com/)  * jQuery.browser.mobile will be true if the browser is a mobile device  **/ (function(a){jQuery.browser.mobile=/android.+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|e\-|e\/|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(di|rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|xda(\-|2|g)|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))})(navigator.userAgent||navigator.vendor||window.opera);

然后使用这个:

1
2
3
4
5
6
7
8
if(jQuery.browser.mobile)
{
&nbsp; &nbsp;console.log('You are using a mobile device!');
}
else
{
&nbsp; &nbsp;console.log('You are not using a mobile device!');
}


mobiledetect.net呢?

其他的解决方案似乎是基本的。这是一个轻量级的PHP类。它使用用户代理字符串的HTTP报头检测特异性结合的移动环境。你可以因此受益从移动检测使用任何可用的第三方插件的WordPress,Drupal,Joomla,Magento的,等等。


如果发现仅仅检查navigator.userAgent并不总是可靠的。通过检查navigator.platform也可以获得更高的可靠性。对以前的答案进行简单修改似乎效果更好:

1
2
3
4
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ||
   (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.platform))) {
    // some code...
}


回答很好,谢谢。支持Windows Phone和Zune的小改进:

1
2
3
4
5
6
7
8
9
10
11
12
        if (navigator.userAgent.match(/Android/i) ||
             navigator.userAgent.match(/webOS/i) ||
             navigator.userAgent.match(/iPhone/i) ||
             navigator.userAgent.match(/iPad/i) ||
             navigator.userAgent.match(/iPod/i) ||
             navigator.userAgent.match(/BlackBerry/) ||
             navigator.userAgent.match(/Windows Phone/i) ||
             navigator.userAgent.match(/ZuneWP7/i)
             ) {
                // some code
                self.location="top.htm";
               }


1
2
3
4
5
6
7
  function checkIsMobile(){
      if(navigator.userAgent.indexOf("Mobile") > 0){
        return true;
      }else{
        return false;
      }
   }

如果您转到任何浏览器,并且尝试获取navigator.useragent,那么我们将获取浏览器信息,如下所示

Mozilla/5.0(Macintosh;Intel Mac OS X 10_13_1)AppleWebkit/537.36(khtml,类似gecko)Chrome/64.0.3282.186 Safari/537.36

同样的,如果你在手机上做的话,你会被跟踪的。

Mozilla/5.0(Linux;Android 8.1.0;Pixel Build/Opp6.171019.012)AppleWebKit/537.36(khtml,类似gecko)Chrome/61.0.3163.98 Mobile Safari/537.36

每个移动浏览器都有包含"mobile"的字符串的user agent,所以我在代码中使用上面的代码片段来检查当前的用户代理是否是web/mobile。根据结果,我将进行必要的更改。


这是我在项目中使用的代码:

1
2
3
4
5
6
7
8
function isMobile() {
 try {
    if(/Android|webOS|iPhone|iPad|iPod|pocket|psp|kindle|avantgo|blazer|midori|Tablet|Palm|maemo|plucker|phone|BlackBerry|symbian|IEMobile|mobile|ZuneWP7|Windows Phone|Opera Mini/i.test(navigator.userAgent)) {
     return true;
    };
    return false;
 } catch(e){ console.log("Error in isMobile"); return false; }
}

用户代理字符串不应该是可信的,独立的。在所有的情况下要解决的工作。

1
2
3
function isMobile(a) {
  return (/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a) || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0, 4)));
}

和调用这个函数

1
isMobile(navigator.userAgent || navigator.vendor || window.opera)

你也可以像下面那样检测它

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$.isIPhone = function(){
    return ((navigator.platform.indexOf("iPhone") != -1) || (navigator.platform.indexOf("iPod") != -1));

};
$.isIPad = function (){
    return (navigator.platform.indexOf("iPad") != -1);
};
$.isAndroidMobile  = function(){
    var ua = navigator.userAgent.toLowerCase();
    return ua.indexOf("android") > -1 && ua.indexOf("mobile");
};
$.isAndroidTablet  = function(){
    var ua = navigator.userAgent.toLowerCase();
    return ua.indexOf("android") > -1 && !(ua.indexOf("mobile"));
};

You can use media query to be able to handle it easily.

1
2
3
4
isMobile = function(){
    var isMobile = window.matchMedia("only screen and (max-width: 760px)");
    return isMobile.matches ? true : false
}

我用这个

1
2
3
if(navigator.userAgent.search("mobile")>0 ){
         do something here
}

您还可以使用服务器端脚本并从中设置javascript变量。

PHP实例

下载http://code.google.com/p/php-mobile-detect/,然后设置javascript变量。

1
2
3
4
5
6
7
8
9
10
11
12
//set defaults
var device_type = 'desktop';


<?php
require_once( 'Mobile_Detect.php');
$detect = new Mobile_Detect();
?>


device_type="<?php echo ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'mobile') : 'desktop'); ?>";
alert( device_type);


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function isDeviceMobile(){
 var isMobile = {
  Android: function() {
      return navigator.userAgent.match(/Android/i) && navigator.userAgent.match(/mobile|Mobile/i);
  },
  BlackBerry: function() {
      return navigator.userAgent.match(/BlackBerry/i)|| navigator.userAgent.match(/BB10; Touch/);
  },
  iOS: function() {
      return navigator.userAgent.match(/iPhone|iPod/i);
  },
  Opera: function() {
      return navigator.userAgent.match(/Opera Mini/i);
  },
  Windows: function() {
      return navigator.userAgent.match(/IEMobile/i) || navigator.userAgent.match(/webOS/i) ;
  },
  any: function() {
      return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
  }
};      
 return isMobile.any()
}

我尝试了一些方法,然后我决定手动填写一个列表,并做一个简单的JS检查。最后用户必须确认。因为有些检查结果是假阳性或阴性。

1
2
var isMobile = false;
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Opera Mobile|Kindle|Windows Phone|PSP|AvantGo|Atomic Web Browser|Blazer|Chrome Mobile|Dolphin|Dolfin|Doris|GO Browser|Jasmine|MicroB|Mobile Firefox|Mobile Safari|Mobile Silk|Motorola Internet Browser|NetFront|NineSky|Nokia Web Browser|Obigo|Openwave Mobile Browser|Palm Pre web browser|Polaris|PS Vita browser|Puffin|QQbrowser|SEMC Browser|Skyfire|Tear|TeaShark|UC Browser|uZard Web|wOSBrowser|Yandex.Browser mobile/i.test(navigator.userAgent) && confirm('Are you on a mobile device?')) isMobile = true;

现在,如果要使用jquery设置CSS,可以执行以下操作:

1
2
3
$(document).ready(function() {
  if (isMobile) $('link[type="text/css"]').attr('href', '/mobile.css');
});

由于移动设备和固定设备之间的边界变得流畅,移动浏览器已经很强大,因此检查宽度和用户确认可能是未来的最佳选择(假设在某些情况下宽度仍然很重要)。因为触摸已经转化为鼠标的上下起伏。

关于移动的可移动性,我建议你考虑一下Yoav Barnea的想法:

1
if(typeof window.orientation !== 'undefined'){...}


http://detectmobilebrowsers.com /结帐是提供移动设备在你的脚本的检测,包括各种语言

jQuery,JavaScript,Perl,Python,PHP、JSP、ASP、C #,ColdFusion和许多更多


另外,我建议使用小型的javascript库bowser,是的,不是。它是基于navigator.userAgent的,并且在所有浏览器(包括iphone、android等)中都经过了很好的测试。

https://github.com/ed/bowser

你可以简单地说:

1
2
3
4
5
6
7
8
9
10
11
if (bowser.msie && bowser.version <= 6) {
  alert('Hello China');
} else if (bowser.firefox){
  alert('Hello Foxy');
} else if (bowser.chrome){
  alert('Hello Silicon Valley');
} else if (bowser.safari){
  alert('Hello Apple Fan');
} else if(bowser.iphone || bowser.android){
  alert('Hello mobile');
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var device = {
  detect: function(key) {
    if(this['_'+key] === undefined) {
      this['_'+key] = navigator.userAgent.match(new RegExp(key, 'i'));
    }
    return this['_'+key];
  },
  iDevice: function() {
    return this.detect('iPhone') || this.detect('iPod');
  },
  android: function() {
    return this.detect('Android');
  },
  webOS: function() {
    return this.detect('webOS');
  },
  mobile: function() {
    return this.iDevice() || this.android() || this.webOS();
  }
};

我以前用过类似的东西。这类似于以前的响应,但技术上更具性能的是,它缓存匹配的结果,特别是在动画、滚动事件等中使用检测时。


这里是一个建议的实施与纯粹的JavaScript(es6)

1
2
3
4
5
6
const detectDeviceType = () =>
    /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
        ? 'Mobile'
        : 'Desktop';

detectDeviceType();

如果你的移动设备。touchable一A,然后你可以确定它的存在:触摸检查处理程序

1
2
3
4
let deviceType = (('ontouchstart' in window)
                 || (navigator.maxTouchPoints > 0)
                 || (navigator.msMaxTouchPoints > 0)
                 ) ? 'touchable' : 'desktop';

jQuery是不需要的信息。


我知道这个老问题有很多答案,但我认为这是一个简单的和想帮助中心功能检测所有浏览器和移动的平板电脑,它的工作就像一个魅力。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
function Device_Type()
{
    var Return_Device;
    if(/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|android|iemobile|w3c|acs\-|alav|alca|amoi|audi|avan|benq|bird|blac|blaz|brew|cell|cldc|cmd\-|dang|doco|eric|hipt|inno|ipaq|java|jigs|kddi|keji|leno|lg\-c|lg\-d|lg\-g|lge\-|maui|maxo|midp|mits|mmef|mobi|mot\-|moto|mwbp|nec\-|newt|noki|palm|pana|pant|phil|play|port|prox|qwap|sage|sams|sany|sch\-|sec\-|send|seri|sgh\-|shar|sie\-|siem|smal|smar|sony|sph\-|symb|t\-mo|teli|tim\-|tosh|tsm\-|upg1|upsi|vk\-v|voda|wap\-|wapa|wapi|wapp|wapr|webc|winw|winw|xda|xda\-) /i.test(navigator.userAgent))
    {
        if(/(tablet|ipad|playbook)|(android(?!.*(mobi|opera mini)))/i.test(navigator.userAgent))
        {
            Return_Device = 'Tablet';
        }
        else
        {
            Return_Device = 'Mobile';
        }
    }
    else if(/(tablet|ipad|playbook)|(android(?!.*(mobi|opera mini)))/i.test(navigator.userAgent))
    {
        Return_Device = 'Tablet';
    }
    else
    {
        Return_Device = 'Desktop';
    }

    return Return_Device;
}

添加:

在一些版本的iOS的Safari(9 x不存在,在navigator.userAgent"iPhone",但它在navigator.platform表演。

1
2
3
4
var isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent);
    if(!isMobile){
        isMobile=/iPhone|iPad|iPod/i.test(navigator.platform);
    }

http://www.w3schools.com/jsref/prop_nav_useragent.asp

按平台名称筛选。

前任:

1
2
3
4
5
6
7
8
9
10
x = $( window ).width();

platform = navigator.platform;

alert(platform);

if ( (platform != Ipad) || (x < 768) )  {


}

^ ^


这似乎是一个全面的现代解决方案:

https://github.com/matthewhudson/device.js网站

它可以检测多个平台、智能手机与平板电脑以及方向。它还将类添加到body标记中,因此检测只发生一次,您可以使用一系列简单的jquery hasClass函数来读取所使用的设备。

过来看。。。

[免责声明:我与写它的人没有任何关系。]


这是所有我知道的值。请帮助udating数组,如果你知道任何其他的价值。

1
2
3
4
5
6
7
function ismobile(){
   if(/android|webos|iphone|ipad|ipod|blackberry|opera mini|Windows Phone|iemobile|WPDesktop|XBLWP7/i.test(navigator.userAgent.toLowerCase())) {
       return true;
   }
   else
    return false;
}

根据你想检测什么是移动设备(这意味着这个建议不适合每个人的需要),你可以通过查看鼠标输入到一次点击毫秒的差异来实现区分,就像我在这个答案中描述的那样。


我做我的。NET应用程序。

在我的第一本_Layout.cshtml共享页面,添加。

1
2
3
4
5
@{
    var isMobileDevice = HttpContext.Current.Request.Browser.IsMobileDevice;
}

<html lang="en" class="@((isMobileDevice)?"ismobiledevice":"")">

然后检查您的网站的任何页面中(jQuery的):

1
var isMobile = $('html').hasClass('ismobiledevice');


使用本

1
2
3
if( screen.width <= 480 ) {
    // is mobile
}


如果要测试用户代理,正确的方法是测试用户代理,即测试navigator.userAgent

如果user伪造了这一点,他们就不必担心了。如果您是test.isUnix(),那么随后就不必担心系统是否是unix。

作为一个用户,更改useragent也可以,但是如果这样做的话,您不希望站点能够正确呈现。

如果您希望为Microsoft浏览器提供支持,则应确保内容的前几个字符包括并测试您编写的每个页面。

底线…始终按照标准进行编码。然后黑它,直到它在当前版本的IE中工作,不要期望它看起来很好。这就是Github做的,他们得到了1亿美元。