检测网站是否正在移动设备或台式机/笔记本电脑上打开。
使用正则表达式来测试 navigator.userAgent
属性以确定打开设备是移动设备还是台式机/笔记本电脑。
const detectDeviceType = () => /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? 'Mobile' : 'Desktop';
detectDeviceType(); // "Mobile" or "Desktop"