gpt4 book ai didi

javascript - 添加到浏览器历史记录而无需重新加载页面

转载 作者:行者123 更新时间:2023-12-03 12:29:40 26 4
gpt4 key购买 nike

基本上,我有一个包含表单的页面。当用户提交该表单时,会调用一个 JavaScript 函数,并且会动态地向用户呈现一个新表单。

此时,我希望用户能够单击浏览器的后退按钮并返回到第一个表单。这可能吗?

感谢您的快速回复,但我无法让 pushState 正常工作。单击后退按钮后,HTML 仍显示“第二种形式”。

这是我用来测试它的代码:

<script>
function newPage(){
history.pushState({state:1}, "State 1", "?state=1");
document.getElementById('formBox').innerHTML="second form";
}
</script>


<input type="button" onclick="newPage();" value="forward" />
<div id='formBox'>first form</div>

最佳答案

var stateObj = { foo: "bar" };
history.pushState(stateObj, "page 2", "bar.html");

相关 link to the docs .

关于javascript - 添加到浏览器历史记录而无需重新加载页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10541388/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com