Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

คุณสมบัติผลิตภัณฑ์ HTML Navigator


คุณสมบัติผลิตภัณฑ์เนวิเกเตอร์ HTML ส่งคืนชื่อกลไกของเบราว์เซอร์

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

navigator.product

ให้เราดูตัวอย่างคุณสมบัติของผลิตภัณฑ์เนวิเกเตอร์ HTML -

ตัวอย่าง

<!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 product property Demo</h1>
<button class="btn" onclick="display()">Show Browser Engine Name</button>
<div class="show"></div>
<script>
   function display() {
      document.querySelector(".show").innerHTML = "Browser engine name is: " + navigator.product;
   }
</script>
</body>
</html>

ผลลัพธ์

คุณสมบัติผลิตภัณฑ์ HTML Navigator

คลิกที่ “แสดงชื่อเครื่องมือเบราว์เซอร์ ” เพื่อแสดงชื่อเอ็นจิ้นเบราว์เซอร์ -

คุณสมบัติผลิตภัณฑ์ HTML Navigator