Computer >> Máy Tính >  >> Lập trình >> HTML

Thuộc tính nền tảng HTML Navigator

Thuộc tính nền tảng điều hướng HTML trả về nền tảng đã biên dịch của trình duyệt.

Cú pháp

Sau đây là cú pháp -

navigator.platform

Hãy để chúng tôi xem một ví dụ về thuộc tính nền tảng điều hướng HTML -

Ví dụ

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

Đầu ra

Thuộc tính nền tảng HTML Navigator

Nhấp vào “ Hiển thị nền tảng trình duyệt ”Để hiển thị nền tảng đã biên dịch của trình duyệt -

Thuộc tính nền tảng HTML Navigator