當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML History length用法及代碼示例


HTML中的“曆史記錄長度”屬性用於返回當前瀏覽器窗口的曆史記錄列表中的URL計數。此屬性返回的最小值為1,因為當前當前頁麵已加載,而最大計數則可以顯示為50。Web瀏覽器(例如Internet Explorer和Opera)的計數從0開始。

用法:

history.length

以下示例程序旨在說明HTML中的History length屬性:


例:

<!DOCTYPE html> 
<html> 
    <head>  
        <title>DOM History length Property</title>  
        <style>  
            h1 {  
                color:green;  
            }  
            h2 { 
                font-family:Impact; 
            } 
            body {  
                text-align:center;  
            }  
        </style>  
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1>  
        <h2>DOM History length Property</h2>  
        <p> 
         For displaying the count of URLs in the 
         history, double click the "View URL Count" 
         button:
        </p> 
        <button ondblclick="history_length()"> 
         View URL Count 
        </button> 
        <p id="history"></p> 
        <script> 
            function history_length() { 
                var h = history.length; 
                document.getElementById("history").innerHTML = h; 
            } 
        </script> 
    </body> 
</html>                    

輸出:

單擊按鈕後:

支持的瀏覽器:下麵列出了History length屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM History length Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。