[jsp]代码库
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
var time = 3;
window.onload = returnUrlByTime;
function returnUrlByTime()
{
document.getElementById("show").innerHTML = "" + time;
if(0 == time)
location = "http://www.baidu.com";
time--;
window.setTimeout("returnUrlByTime()", 1000);
}
</script>
<h3>
<span id="show"></span><br/>
<a href="http://www.baidu.com">baidu</a><br/>
</h3>
</body>
</html>
<!--
<%
response.setHeader("Refresh", "3; URL=http://www.baidu.com");
%>
-->
<!--
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
var time = 3;
setInterval("returnUrlByTime()", 1000);
function returnUrlByTime()
{
document.getElementById("show").innerHTML = "" + time;
if(0 == time)
location = "http://www.baidu.com";
time--;
}
</script>
<h3>
<span id="show"></span><br/>
<a href="http://www.baidu.com">baidu</a><br/>
</h3>
</body>
</html>
-->
by: 发表于:2017-12-26 10:41:40 顶(0) | 踩(0) 回复
??
回复评论