html-javascript前端页⾯刷新重载的⽅法汇总
记得我在兴安得⼒实习要转正的时候,我领导象征性的给我出了⼀套测试题⽬,⾥⾯就有js闭包和页⾯刷新等题⽬。今天把很久之前的测试题⽬之⼀,js页⾯刷新的⽅法以及页⾯⾃动刷新跳转和返回上⼀页和下⼀页等⽅法总结⼀下,仅供⼤家参考!
⼀、javascript页⾯刷新重载的⽅法:
<a href="load();">点击重新载⼊页⾯</a>
<a href="(0);">点击重新载⼊页⾯</a>
<a href="javascript:location=location;">点击重新载⼊页⾯</a>
<a href="javascript:location=location.href;">点击重新载⼊页⾯</a>
<a href="place(location);">点击重新载⼊页⾯</a>
<a href="place(location.href);">点击重新载⼊页⾯</a>
<a href="javascript:location.assign(location);">点击重新载⼊页⾯</a>
<a href="javascript:location.assign(location.href);">点击重新载⼊页⾯</a>
<!--// 以下只⽀持ie -->
<a href="javascript:document.URL=location.href;">点击重新载⼊页⾯</a>
<a href="javascript:navigate(location);">点击重新载⼊页⾯</a>
<a href="Command('Refresh');">点击重新载⼊页⾯</a>
<!--// 以上只⽀持ie -->
⼆、html链接重新载⼊⽅法
<!--// 以下不⽀持ie -->
<a href="">点击重新载⼊页⾯</a>
<!--// 以上不⽀持ie -->
<a href="页⾯本⾝">点击重新载⼊页⾯</a>
三、⾃动刷新页⾯的⽅法
<meta http-equiv="refresh" content="20"> //代码放在head中,每隔20秒钟刷新⼀次
<meta http-equiv="refresh" content="20;url=www.haorooms"> //20秒之后页⾯跳转到haorooms中,通常运⽤到404页⾯
//js⾃动刷新
javascript属于前端吗function myrefresh()
{
load();
}
setTimeout('myrefresh()',1000); //指定1秒刷新⼀次
三、返回上⼀页和下⼀页的⽅法
<(-1)//返回上⼀页(括号中写-2代表返回上两页)
history.back()//返回上⼀页
window.history.forward() //返回下⼀页
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论