HTML Navigator userAgent 屬性


HTML 導航器 userAgent 屬性返回瀏覽器傳送到伺服器的使用者代理標頭值。

語法

以下是語法 −

navigator.userAgent

讓我們看一個 HTML 導航器 userAgent 屬性的示例 −

示例

 即時演示

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
      text-align: center;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 20px;
      width: 330px;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
   .show {
      font-size: 1.2rem;
      color: #fff;
   }
</style>
<body>
<h1>HTML navigator userAgent property Demo</h1>
<button class="btn" onclick="display()">Show user-agent header value</button>
<div class="show"></div>
<script>
   function display() {
      document.querySelector(".show").innerHTML = "<p>Browser user-agent header value is:</p>" + "<p>" + navigator.userAgent + "</p>";
   }
</script>
</body>
</html>

輸出

點選“顯示使用者代理標頭值”按鈕以顯示瀏覽器使用者代理標頭值 −

更新於: 2019 年 9 月 26 日

171 次瀏覽

啟動你的 事業

透過完成課程獲得認證

開始
廣告