美文网首页
History 对象

History 对象

作者: Top_Chenxi | 来源:发表于2016-05-13 09:59 被阅读34次
    require(['jquery'], function($) {
    
        // History 对象
        // History 对象包含用户( 在浏览器窗口中) 访问过的 URL。
    
        // History 对象属性
        // length 返回浏览器历史列表中的 URL 数量。
        console.log(window.history.length);
    
        // History 对象方法
    
        // back() 加载 history 列表中的前一个 URL。
        // window.history.back();
    
        // forward() 加载 history 列表中的下一个 URL。
        // window.history.forward();
    
        // go() 加载 history 列表中的某个具体页面。
        // window.history.go(-1);
        // window.history.go(-2);单击两次后退按钮
    })
    

    相关文章

      网友评论

          本文标题:History 对象

          本文链接:https://www.haomeiwen.com/subject/ynnprttx.html