用于更改“javascript:history.go()”的按钮历史
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个使用闭包的示例函数:显然,将console.log
替换为history.go
。编辑
我只是想到这是使用后退按钮的事实。您可以使用 cookie 覆盖 IE7,但是 localStorage 干净多了。
Here's an example function using closures:Obviously, replaceconsole.log
withhistory.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.