zoukankan      html  css  js  c++  java
  • history对象的使用--JavaScript基础

    history对象提供与历史清单有关的信息,包含最经访问过的10个网页的URL

    1、history对象常用属性

    length 返回浏览器历史列表中URL数量

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>history对象的length属性</title>
    </head>
    <body>
    </body>
    <script>
      document.write("<li>"+history.length);
    </script>
    </html>

    2、history对象常用方法

    1)back()方法

     该方法的功能是在浏览器中显示上一页,相当于go(-1)

    firstPage.html:

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>这是第一个页面</title>
    </head>
    <body>
      <span>这是第一个页面</span>
      <a href="secondPage.html">去上第二个页面</a>
    </body>
    </html>

    secondPage.html:

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>这是第二个页面</title>
    </head>
    <body>
      <span>这是第二个页面</span>
      <p><a href="#" onclick="Javascript:window.history.back()">back()返回到上个页面</a></p>
      <p><a href="#" onclick="Javascript:window.history.go(-1)">go(-1)返回到上个页面</a></p>
    </body>
    </html>

    图示:

     

    2)forward()方法

    该方法的功能是在浏览器中显示下一页,相当于go(1)

    3)go(int)方法

     该方法的功能是在浏览器中载入从当前算起的第int个页面(int为整数),如果int为负,表示往回,相当于返回。

  • 相关阅读:
    一转眼,十年间~~~
    怎样安装PHPnow,并开始使用?
    js的事件类型
    ie兼容性问题 前传
    外层div撑不开的解决办法
    CSS3 新属性搜罗整理
    webApp学习之路
    花式使用CSS3 transition
    20种新颖的按钮风格和效果【附源码】
    酷酷的文本效果
  • 原文地址:https://www.cnblogs.com/qikeyishu/p/7601662.html
Copyright © 2011-2022 走看看