La propiedad cookieEnabled se usa para devolver un valor booleano que especifica si el navegador tiene las cookies habilitadas o no. Devuelve verdadero si las cookies están habilitadas, de lo contrario, devuelve falso.
Sintaxis:
navigator.cookieEnabled
El siguiente programa ilustra la propiedad habilitada para cookies de Navigator:
Comprobación de si el navegador tiene habilitadas las cookies o no.
<!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>
Producción:
Después de hacer clic en el botón:
Navegadores web compatibles
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA