這篇文章將介紹JSP怎麼設定刷新頁面的方法,其實方法還是很多的,但是一定要因地制宜,這樣才能有更好的效果。
方法一
<metahttp-equiv="refresh"content="10;url=跳转的页面">
10表示間隔10秒刷新一次
方法二
<scriptlanguage=''javascript''> window.location.reload(true); </script>
如果是你要刷新某一個iframe就把window給換成frame的名字或ID號碼
方法三
<scriptlanguage=''javascript''> window.navigate("本页面url"); </script>
方法四
function abc() { window.location.href="/blog/window.location.href"; setTimeout("abc()",10000); }
已刷新本頁:
Response.Write("<scriptlanguage=javascript>window.location.href=window.location.href;</script>")
刷新父頁:
Response.Write("<scriptlanguage=javascript>opener.location.href=opener.location.href;</script>")
刷新頁面實作方式總結(HTML,ASP,JS)
定時刷新:
<script>setTimeout("location.href='url'",2000)</script>
說明:url是要刷新的頁面URL位址
2000是等待時間=2秒,
###<meta name="Refresh"content="n;url">
<%response.redirect url%>
以上是jsp怎麼設定刷新頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!