简体   繁体   English

如何从浏览器中删除最后一页历史记录

[英]How to delete last page history from the browerser

When I go from search page to filter page and after selecting filter I come back to search page and press back button of android or iphone it again send me to the filter page as usual, but I want if I press back button on the search page I should go back to home page where I came from当我 go 从搜索页面到过滤页面并在选择过滤器后我回到搜索页面并按下 android 或 iphone 的后退按钮时,它会像往常一样再次将我发送到过滤页面,但我想要如果我在搜索页面上按下后退按钮我应该go回到我原来的主页

You can use history.replaceState();你可以使用history.replaceState(); for that Example:对于那个例子:

history.replaceState({}, '', '/page-which-you-need-to-remove-from-history');

Refer: here参考: 这里

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM