2019-11-04
描述
检测网站是使用移动设备还是使用台式机/笔记本打开的。
提示
- 使用正则表达式来检测
navigator.userAgent
,以获取当前设备是移动设备还是台式机/笔记本
代码
const detectDeviceType = () =>
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
? 'Mobile'
: 'Desktop';
示例
设备检测:
detectDeviceType(); // "Mobile" or "Desktop"