admin管理员组文章数量:1343687
Using this sample code as an example: Go Back
<script>
function goBack() {
window.history.back();
}
</script>
Then, pressing this button will be the same as pressing the back button once on the browser.
However I would like to have a button that makes the back button pressed twice.
I tried window.history.back(-2);
but it doesnt work.
also tried window.history.go(-2);
but it doesnt give desired results.
I could have the button link back to the page but the reason why i want it to go back instead is so that previously entered data in a form is preserved.
Using this sample code as an example: Go Back
<script>
function goBack() {
window.history.back();
}
</script>
Then, pressing this button will be the same as pressing the back button once on the browser.
However I would like to have a button that makes the back button pressed twice.
I tried window.history.back(-2);
but it doesnt work.
also tried window.history.go(-2);
but it doesnt give desired results.
I could have the button link back to the page but the reason why i want it to go back instead is so that previously entered data in a form is preserved.
- 2 Actually window.history.go(-2); should work, can you publish a snippet? – Iaconis Simone Commented Jul 6, 2017 at 12:41
- 1 Wow, it is working as expected now. I swear it wasn't working as expected a few moments ago. thank you though. – aderry Commented Jul 6, 2017 at 12:47
2 Answers
Reset to default 7Now
window.history.go(-2);
works; strange.
window.history.back(2)
and window.history.go(-2)
could both work.
本文标签: javascriptHistory back() Method go back twiceStack Overflow
版权声明:本文标题:javascript - History back() Method go back twice - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743734456a2529749.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论