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>

输出

单击“显示浏览器名称”按钮显示浏览器的名称。

更新日期: 2019 年 9 月 26 日

107 次浏览

开始你的职业生涯 生涯

通过完成课程获得认证

开始
广告
© . All rights reserved.