常用的js 刷新页面的方法 博客分类: js技术开发与应用 htmljs页面刷新方法
程序员文章站
2024-03-25 15:09:40
...
history.go(0); document.URL=location.href; location.assign(location); document.execCommand('Refresh'); window.navigate(location); location.replace(location);//replace清空历史记录 location.reload(); location=location;
replace :在replace之后,浏览历史就被清空了。
href与assign方法会产生历史记录。