如何使用jQuery刷新页面?
ask by luca translate from so Use location.reload()
:(使用location.reload()
:)
$('#something').click(function() {
location.reload();
});
The reload()
function takes an optional parameter that can be set to true
to force a reload from the server rather than the cache.(reload()
函数采用一个可选参数,可以将其设置为true
以强制从服务器而不是从缓存重新加载。) The parameter defaults to false
, so by default the page may reload from the browser's cache.(该参数默认为false
,因此默认情况下该页面可能会从浏览器的缓存中重新加载。)