当前位置:   article > 正文

JavaScript判断当前是什么设备_js查询桌面设备

js查询桌面设备

确定设备类型

我们经常需要这样做,在手机上显示 A 逻辑,在 PC 上显示 B 逻辑。基本上,设备类型是通过识别浏览器的userAgent来确定的。

判断设备是Android还是IOS

除了区分是手机端还是PC端,很多时候我们还需要区分当前设备是Android还是IOS。

 代码展示

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. list-style: none;
  13. }
  14. html,
  15. body {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="message" style="color: red;"></div>
  23. <div>判断当前是移动设备还是桌面设备</div>
  24. <div id="msg" style="color: red;"></div>
  25. <div>判断当前设备是Android还是ios</div>
  26. </body>
  27. <script>
  28. // 判断是什么设备
  29. const isMobile = () => {
  30. return !!navigator.userAgent.match(
  31. /(iPhone|iPod|Android|ios|iOS|iPad|Backerry|WebOS|Symbian|Windows Phone|Phone)/i
  32. );
  33. };
  34. const message = document.querySelector('#message');
  35. if (isMobile()) {
  36. message.textContent = '您正在使用移动设备。';
  37. } else {
  38. message.textContent = '您正在使用桌面设备。';
  39. }
  40. const isAndroid = () => {
  41. return /android/i.test(navigator.userAgent.toLowerCase());
  42. };
  43. const isIOS = () => {
  44. let reg = /iPhone|iPad|iPod|iOS|Macintosh/i;
  45. return reg.test(navigator.userAgent.toLowerCase());
  46. };
  47. const msg = document.querySelector('#msg');
  48. if (isAndroid()) {
  49. msg.textContent = '当前设备是 Android';
  50. } else {
  51. // msg.textContent = '当前设备不是 Android';
  52. console.log('当前设备不是 Android');
  53. }
  54. if (isIOS()) {
  55. msg.textContent = '当前设备是 iOS';
  56. } else {
  57. // msg.textContent = '当前设备不是 iOS';
  58. console.log('当前设备不是 iOS');
  59. }
  60. </script>
  61. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/321074
推荐阅读
相关标签
  

闽ICP备14008679号