Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 네비게이터 제품 속성

<시간/>

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 네비게이터 제품 속성

"브라우저 엔진 이름 표시를 클릭합니다. " 버튼을 누르면 브라우저 엔진 이름이 표시됩니다. -

HTML 네비게이터 제품 속성