1.每秒递减跳转
<script language=javascript>
function out(obj){
var i = obj ;
if(i==0)
document.location.href=\"index.jsp\";
document.body.innerHTML = i;
i--;
setTimeout(\"out(\"+i+\")\",1000);
}
</script>
<body onload=\"out(5);\">
</body>
2.使用response.setHeader函数
<%response.setHeader(\"Refresh\",\"5;URL=...\");%>
3.使用meta标签
<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"2\";url=xxxx.jsp\">
JSP页面实现自动跳转!
一、页面自动刷新:
把如下代码加入<head>区域中
<meta http-equiv=\"refresh\" content=\"5\">
注:content=\"5\" 是时间控制,表示每隔5秒刷新一次页面。
二、页面自动跳转:
把如下代码加入<head>区域中
<meta http-equiv=\"refresh\" content=\"1;url=index.jsp\">
注:content=\"1 是时间控制,表示1秒后自动跳转到要跳转的页面.
content=\"0 表示打开该页后立即跳转到你要跳转的页面.
url=index.jsp 是要跳转的页面
本文地址:https://www.stayed.cn/item/1592
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我