如何在javascript中远程刷新页面
有没有办法从 javascript 中的另一个页面远程刷新页面。当我返回之前显示的页面时,我想强制浏览器进行刷新。我在一个页面中执行一些代码,它应该在另一个页面中显示一些结果,当我转到我想看到结果的页面时,我必须按 F5 才能看到它们...所以请帮助:))
is there a way to refresh a page remotly from another page in javascript. i want to force the browser to do a refresh when i go back to a page which was displayed before. im doing some code in a page and it should show some results in another page, when i go to the page where i suppose to see the results, i have to press F5 to see them... so please help :))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找
location.reload(true)
(从服务器重新加载) 或location.reload()
(重新加载来自缓存)希望这有帮助。
I think you are looking for
location.reload(true)
(reloads from the server) orlocation.reload()
(reloads from cache)Hope this helps.