html页面等几秒自动跳转且显示时间
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns=" http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv= "Refresh" content= "5;url=../common/index.html"><title>添加新闻成功</title><style type="text/css">.td { color: #FF0000}</style><script language="javascript"> var times=6; clock(); function clock() //自动跳转{ window.setTimeout('clock()',1000); times=times-1; time.innerHTML =times; } </script></head><body><div align="center"><h4><a href=" http://www.baidu.com">如果页面没有跳转,请点击这里</a></h4></div><div align="center"> <table> <tr> <td class= "td">该页面将在</td> <td class= "td"><div id= "id">5</div></td> <td class= "td">秒后自动跳转</td> </tr> </table></div></body></html>
展开
3个回答
展开全部
最简单的一种:直接在前面<head>里面添加代码:
1
2
<span style="font-size:18px;"> </span><span style="font-size:24px;"><meta http-equiv="refresh" content="3;URL=res.html"> </span>
<span style="font-size:24px;">//3秒之后自动跳转到res.html,两个属于同一文件下面,要是需要跳转到jsp页面,就需要在url里面填写url地址————(浏览器的地址栏里面写入的数据,如:http://localhost:8080/TestDemo/1.jsp)</span>
方法2:
需要用到window里面的方法:
setTimeout 经过指定毫秒值后计算一个表达式。
例子:
window.setTimeout("alert('Hello, world')", 1000);
这个是写在js代码里面的;
希望对你有所帮助!
1
2
<span style="font-size:18px;"> </span><span style="font-size:24px;"><meta http-equiv="refresh" content="3;URL=res.html"> </span>
<span style="font-size:24px;">//3秒之后自动跳转到res.html,两个属于同一文件下面,要是需要跳转到jsp页面,就需要在url里面填写url地址————(浏览器的地址栏里面写入的数据,如:http://localhost:8080/TestDemo/1.jsp)</span>
方法2:
需要用到window里面的方法:
setTimeout 经过指定毫秒值后计算一个表达式。
例子:
window.setTimeout("alert('Hello, world')", 1000);
这个是写在js代码里面的;
希望对你有所帮助!
展开全部
<script language="javascript">
var times = 6;
var time = document.getElementById("id");
clock();
function clock() {
window.setTimeout(clock,1000);
times=times-1;
time.innerHTML =times;
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
服务器繁忙
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询