La propiedad Navigator userAgent se usa para devolver el valor del encabezado del agente de usuario enviado al servidor por el navegador. Devuelve una string que representa valores como el nombre, la versión y la plataforma del navegador.
Sintaxis:
navigator.userAgent
Valor devuelto: una string, que representa la string del agente de usuario para el navegador actual
El siguiente programa ilustra la propiedad del agente de usuario de Navigator:
html
<!DOCTYPE html> <html> <head> <title> Navigator userAgent Property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Navigator userAgent Property</h2> <p> For checking the browser's User-agent header name, double click the "Check User Agent" button: </p> <button ondblclick="checkua()"> Check User Agent </button> <p id="header"></p> <script> function checkua() { var u = "User-agent header sent by the browser : " + navigator.userAgent; document.getElementById("header").innerHTML = u; } </script> </body> </html>
Producción:
Después de hacer clic en el botón
Navegadores compatibles: los navegadores compatibles con Navigator userAgent se enumeran a continuación:
- 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