更多"Try it Yourself"下面的例子。
定義和用法
該cookieEnabled屬性返回一個布爾值,指定是否cookies在瀏覽器中啟用。
有關cookie的更多信息,請閱讀我們的JavaScript Cookies教程 。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
cookieEnabled | 是 | 是 | 是 | 是 | 是 |
句法
navigator.cookieEnabled
技術細節
返回值: | 布爾值,指示是否cookies在瀏覽器中啟用。 如果啟用,則返回true,否則返回false |
---|
更多示例
例
在一個示例中,所有的導航性能的演示:
var txt = "";
txt += "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt +=
"<p>Browser Name: " + navigator.appName + "</p>";
txt += "<p>Browser
Version: " + navigator.appVersion + "</p>";
txt += "<p>Cookies Enabled: "
+ navigator.cookieEnabled + "</p>";
txt += "<p>Browser
Language: " + navigator.language + "</p>";
txt +=
"<p>Browser Online: " + navigator.onLine + "</p>";
txt += "<p>Platform: " +
navigator.platform + "</p>";
txt += "<p>User-agent header: " +
navigator.userAgent + "</p>";
試一試» 導航對象