當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Navigator cookieEnabled屬性用法及代碼示例


cookieEnabled 屬性用於返回一個布爾值,該值指定瀏覽器是否啟用了 cookie。如果啟用 cookie,則返回 true,否則返回 false。

用法:

navigator.cookieEnabled

以下示例程序旨在說明導航器 cookieEnabled 屬性:
檢查瀏覽器是否啟用了cookie。

HTML


<!DOCTYPE html> 
<html> 
<head> 
    <title> 
      Navigator cookieEnabled Property in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Navigator cookieEnabled Property</h2> 
  
    <p> 
      For checking whether cookies are enabled in the browser, 
      double click the "Check Cookies" button: 
    </p> 
  
    <button ondblclick="checkcookies()">Check Cookies</button> 
  
    <p id="check"></p> 
  
    <script> 
        function checkcookies() { 
            var c =  
                "Are cookies enabled : " + navigator.cookieEnabled; 
            document.getElementById("check").innerHTML = c; 
        } 
    </script> 
</body> 
</html> 

輸出:

在點擊按鈕之前: 單擊按鈕後: 支持的網絡瀏覽器

  • 穀歌瀏覽器1
  • 邊 12
  • 互聯網瀏覽器 4
  • 火狐1
  • Opera 12.1
  • 野生動物園 1


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML DOM Navigator cookieEnabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。