頁面刷新方法介紹

頁面刷新事件

  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

自動刷新方法

    指定時間間隔刷新頁面 html

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

    指定時間間隔後跳轉 ui

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

    定時刷新頁面 url

    <script language="JavaScript">
    function myrefresh() {
        window.location.reload();
    }
    setTimeout('myrefresh()',1000); //指定1秒刷新一次
    </script>
相關文章
相關標籤/搜索