页面刷新方法介绍

页面刷新事件

  1. history.go(0)
  2. location.reload()
  3. location=location
  4. location.assign(location)
  5. document.execCommand('Refresh')
  6. window.navigate(location)
  7. location.replace(location)
  8. document.URL=location.href

自动刷新方法

    指定时间间隔刷新页面

    <meta http-equiv="refresh" content="10">

    指定时间间隔后跳转

    <meta http-equiv="refresh" content="10;url=http://www.wyxg.com">

    定时刷新页面

    <script language="JavaScript">
    function myrefresh() {
        window.location.reload();
    }
    setTimeout('myrefresh()',1000); //指定1秒刷新一次
    </script>

 

        


你可能感兴趣的:(页面刷新方法介绍)