Navigator userAgent 属性

Navigator 对象参考手册 Navigator 对象

定义和用法

userAgent 属性是一个只读的字符串,声明了浏览器用于 HTTP 请求的用户代理头的值。.

语法

navigator.userAgent

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 userAgent 属性


实例

您的浏览器发送的用户代理标题:

<script>
  document.write("用户代理: " + navigator.userAgent);
</script>

尝试一下 »


更多实例

本例包含了所有 navigator 属性。

<div id="example"></div>
<script>
  txt = "<p>浏览器代号: " + navigator.appCodeName + "</p>";
  txt += "<p>浏览器名称: " + navigator.appName + "</p>";
  txt += "<p>浏览器版本: " + navigator.appVersion + "</p>";
  txt += "<p>启用Cookies: " + navigator.cookieEnabled + "</p>";
  txt += "<p>硬件平台: " + navigator.platform + "</p>";
  txt += "<p>用户代理: " + navigator.userAgent + "</p>";
  txt += "<p>用户代理语言: " + navigator.systemLanguage + "</p>";
  document.getElementById("example").innerHTML = txt;
</script>

尝试一下 »


Navigator 对象参考手册 Navigator 对象