當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Navigator userAgent用法及代碼示例


Navigator userAgent屬性用於返回瀏覽器發送給服務器的user-agent標頭的值。它返回一個表示值的字符串,例如瀏覽器的名稱,版本和平台。

用法:

navigator.userAgent

以下示例程序旨在說明Navigator的userAgent屬性:


<!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>   

輸出:

單擊按鈕後

支持的瀏覽器:下麵列出了Navigator userAgent支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | Navigator userAgent Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。