HTML Navigator userAgent 属性
HTML 导航器 userAgent 属性返回浏览器发送到服务器的用户代理标头值。
语法
以下是语法 −
navigator.userAgent
让我们看一个 HTML 导航器 userAgent 属性的示例 −
示例
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } .show { font-size: 1.2rem; color: #fff; } </style> <body> <h1>HTML navigator userAgent property Demo</h1> <button class="btn" onclick="display()">Show user-agent header value</button> <div class="show"></div> <script> function display() { document.querySelector(".show").innerHTML = "<p>Browser user-agent header value is:</p>" + "<p>" + navigator.userAgent + "</p>"; } </script> </body> </html>
输出
点击“显示用户代理标头值”按钮以显示浏览器用户代理标头值 −
广告