--JavaScript-History:历史记录对象

History:历史记录对象
    1、创建(不用创建,通过window直接获取):
        1、window.history
        2、history(window可以省略)
    2、方法:
        *back():加载history列表中的前一个URL(相当于后退)
        *forward():加载history列表中的下一个URL(相当于前进)
        *go(参数):加载history列表中的某个具体页面(相当于集合了back和forward)
            *参数:
                正数:前进几个历史记录
                负数:后退几个历史记录
    3、属性:
        *length:返回当前窗口历史列表中的URL数量

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<!--History:历史记录对象
    1、创建(不用创建,通过window直接获取):
        1、window.history
        2、history(window可以省略)
    2、方法:
        *back():加载history列表中的前一个URL(相当于后退)
        *forward():加载history列表中的下一个URL(相当于前进)
        *go(参数):加载history列表中的某个具体页面(相当于集合了back和forward)
            *参数:
                正数:前进几个历史记录
                负数:后退几个历史记录
    3、属性:
        *length:返回当前窗口历史列表中的URL数量-->
<input id="hid" type="button" value="URL数量">
<a href="JavaScriptDOMTest5.html" id="sid">05页面</a>
<input id="fid" type="button" value="前进">
<script>
    var hid = document.getElementById("hid");
    hid.onclick=function () {
        var length = history.length;
        alert(length);
    }


    var fid = document.getElementById("fid");
    fid.onclick=function () {
        /*history.forward();*/
        history.go(1);//和history.forward()一样
    }
</script>
</body>
</html>

上一篇:iptables学习


下一篇:python表白代码简单