浏览器后退/前进按钮

时间:2016-12-08 08:03:38

标签: javascript jquery

我想问一个关于后退和前进按钮的问题。 我有这个jQuery代码:

$( document ).ready(function($) {
   if (window.history && window.history.pushState) {  
       window.history.pushState("forward", null, "./index.html");
       $(window).on("popstate", function() {
           that.handleBack();    
       });
    }
});

此代码也对后退和前进按钮有效。 我怎么能写出按钮的混乱? 所以我想制作类似的代码:

If (back button){
 handleBack();
}

Else if(forward button){
 delete history or disabble the forward button.
}

你能帮助我吗,我怎么能提出这个解决方案? 提前谢谢你的帮助。

0 个答案:

没有答案