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

HTML Navigator cookieเปิดใช้งานคุณสมบัติ


คุณสมบัติ HTML navigator cookieEnabled ส่งคืนค่าบูลีนที่กำหนดว่าเปิดใช้งานคุกกี้ในเบราว์เซอร์หรือไม่

ไวยากรณ์

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

navigator.cookieEnabled

ให้เราดูตัวอย่างคุณสมบัติ HTML navigator cookieEnabled -

ตัวอย่าง

<!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.5rem;
      color: #fff;
   }
</style>
<body>
<h1>HTML navigator cookieEnabled property Demo</h1>
<button class="btn" onclick="display()">Show Browser Cookies Information</button>
<div class="show"></div>
<script>
   function display() {
      document.querySelector(".show").innerHTML = "<p>Are Browser cookies enabled?</p>" + "<p>" +          navigator.cookieEnabled + "</p>";
   }
</script>
</body>
</html>

ผลลัพธ์

HTML Navigator cookieเปิดใช้งานคุณสมบัติ

คลิกที่ “แสดงข้อมูลคุกกี้ของเบราว์เซอร์ ” เพื่อแสดงว่าเปิดใช้งานคุกกี้ของเบราว์เซอร์หรือไม่ -

HTML Navigator cookieเปิดใช้งานคุณสมบัติ