navigator.userAgent用于非智能设备

时间:2011-09-08 09:11:36

标签: javascript navigator smart-device

从navigator.userAgent

检测智能设备很简单

如navigator.userAgent.match(/ iPhone / i),navigator.userAgent.match(/ Android / i)等。

我如何知道来自台式机,笔记本电脑等系统(非智能设备)的请求。使用navigator.userAgent。

2 个答案:

答案 0 :(得分:1)

您可以测试热门浏览器名称的userAgent值!例如,最新版本的Firefox的用户代理字符串如下所示:

Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0.2) Gecko/20100101 Firefox/6.0.2

答案 1 :(得分:1)