如何使用JavaScript或HTML刷新页面?


当前回答

简单地使用. .

location.reload(true/false);

如果为false,页面将从缓存重新加载,否则从服务器重新加载。

其他回答

试试这个效果很好

jQuery("body").load(window.location.href);

window.location.reload ();在JavaScript中

<meta http-equiv="refresh" content="1"> HTML(其中1 = 1秒)。

Use:

window.location.reload();
window.location.reload()

应该工作,但有许多不同的选项,如:

window.location.href=window.location.href

你也可以使用

<input type="button" value = "Refresh" onclick="history.go(0)" />

这对我来说很有效。