navigator.userAgent没有给出完整的用户代理字符串

目前得到这个值: Mozilla / 5.0(Windows NT 6.1; WOW64; rv:21.0)Gecko / 20100101 Firefox / 21.0

但我已经在线测试我的当前用户代理是: Mozilla / 5.0(Linux; U; Android 4.0.3; de-de; Galaxy S II Build / GRJ22)AppleWebKit / 534.30(KHTML,像Gecko)版本4.0 Mobile Safari / 534.30

我曾尝试过

<script>
document.write(window.navigator.userAgent);
</script>

<script>
document.write(navigator.userAgent);
</script>

它给我的Mozilla / 5.0(Windows NT 6.1; WOW64; rv:21.0)Gecko / 20100101 Firefox / 21.0未满字符串,因为我想。

它没有提供关于移动设备或浏览器的任何信息。

我是否需要添加其他任何内容才能获得完整的用户代理字符串


请参阅以下文档。

https://developer.mozilla.org/en-US/docs/Gecko_user_agent_string_reference

它为您提供一个包含所有信息的用户代理字符串。 假设您出于某种原因正在使用WOW64 Windows设备。


我认为这个链接会回答你的问题:

自动检测手机浏览器(通过用户代理?)

最好的祝福

链接地址: http://www.djcxy.com/p/51905.html

上一篇: navigator.userAgent not giving full user agent String

下一篇: Do DOM tree elements with ids become global variables?