码迷,mamicode.com
首页 > 其他好文 > 详细

BOM history

时间:2020-04-12 16:18:04      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:utf-8   表示   html   index   title   asc   一个   dex   button   

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
  <script type="text/javascript">
   /*
    * history
    * -对象可以用来操作浏览器向前或向后翻页
    */
   
   window.onload=function(){
    var btn = document.getElementById(‘btn‘);
    btn.onclick = function(){
     /*
      * length
      * -属性,可以获取当前访问的链接数量
      */
//     alert(history.length);
     
     /*
      * back()
      * -可以用来回退到上一个页面,作用和浏览器的回退按钮一样
      */
//     history.back();

     /*
      * forward()
      * -可以跳转下一个页面,作用和浏览器的前进按钮一样
      */
//     history.forward();
     /*
      * go()
      * -可以用来跳转指定的页面
      * -它需要一个整数作为参数
      * 1 表示向前跳转一个页面    2 表示向前跳转二个页面
      *  -1 表示向前跳转一个页面
      */
     
     history.go(1);
    };
   };
  </script>
 </head>
 <body>
  <h1>history</h1>
  <button id="btn">点击</button>
  <a href="index.html">去BOM</a>
  
 </body>
</html>

BOM history

标签:utf-8   表示   html   index   title   asc   一个   dex   button   

原文地址:https://www.cnblogs.com/weixin2623670713/p/12685796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!