HTML NavigatorappName 屬性
HTML navigator appName 屬性返回瀏覽器的名稱。
語法
以下是語法 −
navigator.appName
讓我們來看一下 HTML navigator appName 屬性的示例 −
示例
<!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.5rem; color: #fff; } </style> <body> <h1>HTML navigator appName property Demo</h1> <button class="btn" onclick="display()">Show Browser Name</button> <div class="show"></div> <script> function display() { document.querySelector(".show").innerHTML = "Browser Name: " + navigator.appName; } </script> </body> </html>
輸出
單擊“顯示瀏覽器名稱”按鈕顯示瀏覽器的名稱。
廣告