JavaScript 后退按钮失败
所以我认为这个脚本非常简单:
<a id="BackButtonlnk" href="#" class="white" onClick="history.go(-1)"></a>
当我单击它时,它会短暂显示上一页,但看起来只是刷新 而且您永远不会到达上一页。
So I thought this script was pretty straight forward:
<a id="BackButtonlnk" href="#" class="white" onClick="history.go(-1)"></a>
When I click it it briefly shows the previous page but just looks like it refreshes
and you never end up at the previous page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试在 onclick 中添加“; return false”。
我认为发生的事情是 onclick 触发(尝试转到上一页),然后浏览器尝试转到“(当前页面)#”(注意“#”),并实质上刷新原始页面。因此,看起来它正在来回——因为确实如此。
Try adding "; return false" to your onclick.
I think what's happening is the onclick fires (trying to go to the previous page), and then the browser tries to go to "(current page)#" (note the "#"), and essentially refreshes the original page. Thus, it appears that it's going back and forth - because it is.
尝试使用 href 而不是 onclick 事件:
Try using the href instead of the onclick event:
Javascript 有多种形式。
如果你想这样做,请推荐
In Javascript has many forms.
If you wanna do that you write, recomend