前言:
现时咱们对“刷新一下是什么意思”可能比较重视,大家都想要分析一些“刷新一下是什么意思”的相关知识。那么小编在网摘上网罗了一些对于“刷新一下是什么意思””的相关内容,希望咱们能喜欢,看官们一起来了解一下吧!本文为大家介绍三种 js 刷新当前页面的方法:
reload() 方法;
replace() 方法;
页面自动刷新;
方法1:reload() 方法
reload()方法用于刷新当前文档。
reload() 方法类似于你浏览器上的刷新页面按钮。
location.reload();
方法2:replace() 方法
replace() 方法可用一个新文档取代当前文档。
<!DOCTYPE html><html><head><meta charset="utf-8"><title>replace() 方法</title><script>function replaceDoc(){window.location.replace(";)}</script></head><body><input type="button" value="载入新文档替换当前页面" onclick="replaceDoc()"></body></html>
方法3:页面自动刷新
页面自动刷新:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="5">
其中5指每隔5秒刷新一次页面。
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #刷新一下是什么意思