Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是不可能加window.location.reload()的window.history.go(-1)吗?像这样
window.location.reload()
window.history.go(-1)
<input type="button" value="Back" onclick="window.history.go(-1), window.location.reload()">
您不能一次触发 2 个浏览器事件,因此您需要输入逻辑。
火 window.location.reload()
然后在其上捕获事件并刷新页面的页面,这种情况基本上在您的主模板或公共 Js 文件中。您可以使用 Jquery 来实现这一点。