2024年05月15日 建站教程
js刷新当前页面的方法:1、window.location
;2、location.href
;3、location.reload()
;4、location.assign()
等4个方法,下面web建站小编给大家简单介绍一下实现代码!
方法一:window.location
window.location = "https://lmcjl.com/";
方法二:location.href
location.href = "https://lmcjl.com/";
方法三:location.reload()
location.reload(); //重新加载当前页面
方法四:location.assign()
location.assign("https://lmcjl.com/");
本文链接:http://so.lmcjl.com/news/4576/