概述
返回一个布尔值,表明当前页面是否启用了cookies(只读属性)
语法
var cookieEnabled = navigator.cookieEnabled;
cookieEnabled 是个布尔值
true
或false
.
例子
if (!navigator.cookieEnabled) { // 让用户知道,开启网页中的cookies是很有必要的. }
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | ? | 1.0 (1.7 or earlier) | ? | ? | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? | 1.0 (1) | ? | ? | ? |
Gecko备注
在Gecko 8.0 (Firefox 8.0 / Thunderbird 8.0 / SeaMonkey 2.5)之前的版本中, 当页面出现异常时,window.navigator.cookieEnabled
可能会返回错误的值. 目前该bug已经被修复.
规范
DOM Level 0 不属于任何标准.