当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。