指定時間間隔刷新頁面 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>