我需要检测我的Web应用程序是在台式机还是移动设备上运行。谷歌搜索这个问题,我发现了两个解决方案:
navigator.userAgent
并进行regEx匹配(例如http://detectmobilebrowsers.com/)navigator.platform
并为匹配的平台(例如What is the list of possible values for navigator.platform as of today?)进行regEx匹配以上两种方法中哪一种更可靠?
P.S。我不能使用“功能检测”,因为我要查找的功能不是浏览器功能。因此,我真的需要检测我是否在移动设备上。