用于更改“javascript:history.go()”的按钮历史

发布于 2024-12-05 04:20:35 字数 219 浏览 2 评论 0原文

通常我们使用 Back 来返回页面。

我想构建一个按钮来增加 -1 值。

例如,当我单击按钮 history.go(-2) 时,再次单击 history.go(-3) ,如下所示。

是否可以?

Usually we use <a href="javascript:history.go(-1)">Back</a> to go back page.

I would like to build a button to increase -1 value.

For example, when I click a button history.go(-2) click again history.go(-3) like this.

Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一曲爱恨情仇 2024-12-12 04:20:35

这是一个使用闭包的示例函数:

<a id="backer" href="">back</a>
...
document.getElementById('backer').onclick = (function () {
  var x = -1;
  return function () {
      console.log(x--)
  }
})();

显然,将 console.log 替换为 history.go


编辑

我只是想到这是使用后退按钮的事实。您可以使用 cookie 覆盖 IE7,但是 localStorage 干净多了。

<a id="backer" href="">back</a>
...
document.getElementById('backer').onclick = (function () {
  var x = window.localStorage['background'] | 0;
  return function () {
      x = x - 1;       
      window.localStorage['background'] = x;  
      history.back(--x)
  }
})();

Here's an example function using closures:

<a id="backer" href="">back</a>
...
document.getElementById('backer').onclick = (function () {
  var x = -1;
  return function () {
      console.log(x--)
  }
})();

Obviously, replace console.log with history.go.


EDIT

I just thought about the fact that this is using the back button. You could use cookies for IE7 coverage, but localStorage is so much cleaner.

<a id="backer" href="">back</a>
...
document.getElementById('backer').onclick = (function () {
  var x = window.localStorage['background'] | 0;
  return function () {
      x = x - 1;       
      window.localStorage['background'] = x;  
      history.back(--x)
  }
})();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文