当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM History length属性用法及代码示例


HTML DOM History length 属性返回当前窗口历史列表中的 URL。

用法

以下是语法 -

history.length

示例

让我们看一个 HTML DOM 历史长度属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   body{
      text-align:center;
   }
   .btn{
      background-color:lightblue;
      border:none;
      height:2rem;
      border-radius:50px;
      width:60%;
      margin:1rem auto;
   }
   .show{
      font-size:2rem;
      font-weight:bold;
      color:orange;
   }
</style>
</head>
<body>
<h1>History length Property Example</h1>
<button type="button" onclick="getHistoryLength()" class="btn">Click me to get History length
<div class="show"></div>
<script>
   function getHistoryLength(){
      var historyLength=history.length;
      document.querySelector(".show").innerHTML = historyLength;
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击“blue”按钮查看当前浏览器窗口的历史长度。

相关用法


注:本文由纯净天空筛选整理自Sharon Christine大神的英文原创作品 HTML DOM History length Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。