方法一
<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">
说明:
n,是等待的时间,以秒为单位
url是要刷新的页面URL地址
<%response.redirect url%>
说明:一般用一个url参数或者表单传值判断是否发生某个 *** 作,然后利用response.redirect 刷新。
以上就是jsp怎么设置刷新页面的详细内容,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)