Esempio
Scopri se cookies sono abilitati nel tuo browser:
var x = "Cookies Enabled: " + navigator.cookieEnabled;
Il risultato di x sarà:
Prova tu stesso " Più "Try it Yourself" esempi di seguito.
Definizione e l'utilizzo
La proprietà cookieEnabled restituisce un valore booleano che specifica se cookies sono abilitati nel browser.
Per ulteriori informazioni sui cookie, leggere la nostra JavaScript Cookies Tutorial .
Supporto browser
Proprietà | |||||
---|---|---|---|---|---|
cookieEnabled | sì | sì | sì | sì | sì |
Sintassi
navigator.cookieEnabled
Dettagli tecnici
Valore di ritorno: | Un valore booleano, che indica se cookies sono abilitati nel browser. Restituisce true se abilitato, altrimenti restituisce falso |
---|
Altri esempi
Esempio
Una dimostrazione di tutte le proprietà del navigatore in un esempio:
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>";
Prova tu stesso " Navigator Object