当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Navigator userAgent属性用法及代码示例


Navigator userAgent 属性用于返回浏览器发送到服务器的 user-agent 标头值。它返回一个表示浏览器名称、版本和平台等值的字符串。

用法:

navigator.userAgent

返回值:一个字符串,表示当前浏览器的用户代理字符串

以下示例程序旨在说明 Navigator userAgent 属性:

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
      Navigator userAgent Property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>Navigator userAgent Property</h2> 
      
<p> 
      For checking the browser's User-agent header name, 
      double click the "Check User Agent" button:  
    </p> 
  
    <button ondblclick="checkua()"> 
      Check User Agent 
    </button> 
  
    <p id="header"></p> 
  
    <script> 
        function checkua() { 
            var u =  
                "User-agent header sent by the browser : "  
                                     + navigator.userAgent; 
            document.getElementById("header").innerHTML = u; 
        } 
    </script> 
</body> 
</html>

输出:
在点击按钮之前:

单击按钮后:

支持的浏览器:支持的浏览器导航器用户代理列出如下:

  • 谷歌浏览器1
  • 边 12
  • 互联网浏览器 4
  • 火狐1
  • Opera 12.1
  • 野生动物园 1


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML DOM Navigator userAgent Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。