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


HTML DOM History forward()用法及代码示例


HTML中的History forward()方法用于加载历史记录列表中的下一个URL。它与Web浏览器中的“前进”按钮具有相同的实际应用。如果历史记录列表中不存在下一页,则此方法将不起作用。

用法:

history.forward

下面的程序演示了HTML中的History forward()方法:


例:

<!DOCTYPE html> 
<html> 
    <head>  
        <title>DOM History.forward() Method</title>  
        <style>  
            h1 {  
                color:green;  
            }  
            h2 { 
                font-family:Impact; 
            } 
            body {  
                text-align:center;  
            }  
        </style>  
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1>  
        <h2>DOM History.forward( ) Method</h2>  
        <p> 
          For going to the next URL in the history 
          double-click the "Go next" button:  
        </p> 
        <button ondblclick="history_forward()"> 
          Go next 
        </button> 
        <script> 
            function history_forward() { 
                window.history.forward();  
            } 
        </script> 
    </body> 
</html>                    

输出:

单击按钮后:

支持的浏览器:下面列出了History forward()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


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