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

Phương thức HTML Navigator javaEnabled ()

Phương thức javaEnabled () của trình điều hướng HTML trả về một giá trị boolean xác định xem trình duyệt có bật java hay không.

Cú pháp

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

navigator.javaEnabled()

Hãy để chúng tôi xem một ví dụ về thuộc tính userAgent của trình đ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 javaEnabled() method Demo</h1>
<button class="btn" onclick="display()">Check Java is Enable/Disable</button>
<div class="show"></div>
<script>
   function display() {
      var msg = document.querySelector(".show");  
      if (navigator.javaEnabled()) {
         msg.innerHTML = "Hey! Java is enable in this browser";
      } else {
         msg.innerHTML = "Hey! Java is disable in this browser";
      }
   }
</script>
</body>
</html>

Đầu ra

Phương thức HTML Navigator javaEnabled ()

Nhấp vào “ Kiểm tra Java là Bật / Tắt ”Để hiển thị liệu Java có được bật / tắt trong trình duyệt này hay không -

Phương thức HTML Navigator javaEnabled ()