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


HTML Navigator cookieEnabled用法及代碼示例


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

用法:

navigator.cookieEnabled

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


<!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> 
                          

輸出:

單擊按鈕後:

支持的網頁瀏覽器

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


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