30秒学会 JavaScript 片段 · 2019年9月12日

30秒学会 JavaScript 片段 – detectDeviceType

Detects whether the website is being opened in a mobile device or a desktop/laptop.

Use a regular expression to test the navigator.userAgent property to figure out if the device is a mobile device or a desktop/laptop.

代码片段

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

使用样例

detectDeviceType(); // "Mobile" or "Desktop"