Jquery前进按钮

时间:2013-06-20 09:52:45

标签: jquery

如何在浏览器链接中创建jQuery作为前进按钮?

更新:

所以最后这对我有用。

jQuery代码:

$(document).ready(function(){
    $('a.back').click(function(){
        parent.history.back();
        return false;
    });
    $('a.forward').click(function(){
        parent.history.forward();
        return false;
    });
});

HTML代码

<a class="back" href="javascript:void()"> Go back </a>
<a class="forward" href="javascript:void()"> Go Forward </a>

3 个答案:

答案 0 :(得分:4)

这个javascript会起作用,

history.go(1)

答案 1 :(得分:2)

像回来一样工作,但你要向前写。

parent.history.forward();

答案 2 :(得分:1)

你可以使用forward()方法

   window.history.forward();

通过传递n

,使用go()跳转到n页面
window.history.go(1);

Traveling through history