js控制10秒后页面自动跳转

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>10s Jump</title>

<style>

#content {width:100%; margin:0px auto; height:720px; line-height:720px; font-family:"微软雅黑"; font-size:16px}

</style>

<script type="text/javascript">

function countDown(secs,tUrl) {

var jumpTo = document.getElementById("jumpTo");

jumpTo.innerHTML=secs;

if (--secs>0){

setTimeout("countDown("+secs+",‘"+tUrl+"‘)",1000);

}

else{

location.href=tUrl;

}

}

</script>

</head>

<body>

<div id="content" align="center">

<a href="http://www.baidu.com">点击继续访问</a> &nbsp; <span id="jumpTo">9</span>&Prime;

<script type="text/javascript">countDown(9,"http://www.baidu.com");</script>

</div>

</body>

</html>

时间: 2024-10-10 01:10:24

js控制10秒后页面自动跳转的相关文章

五秒后页面自动跳转

1 <head> 2 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 3 <title>无标题文档</title> 4 <script type="text/javascript"> 5 6 </script> 7 </head> 8 9 <body><

指定时间,页面自动跳转

页面xtime(如5)秒后,自动跳转到url指定的页面 meta标签放入head标签里面 <meta http-equiv="refresh" content="xtime;url=xxxxx.do"/>

HTML页面自动跳转的五种实现方法

下面列了五个例子来详细说明,这几个例子的主要功能是:在5秒后,自动跳转到同目录下的02view.html(根据自己需要自行修改)文件. 1)html的实现 <head> <meta http-equiv="refresh" content="5;url=02view.html"> </head> 优点:简单 缺点:Struts Tiles中无法使用 2)javascript的实现 <script language="

10秒后跳转

1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>10秒后跳转</ti

js控制5秒返回指定界面,或上一个界面

js控制5秒返回指定界面,代码如下 <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <script type="text/javascript"> function countDown(secs,surl){ //alert(surl);

Bootstrap浏览器支持下载页面 判断当前IE浏览器小于等于IE8时页面自动跳转到浏览器支持下载页面

Bootstrap浏览器支持下载HTML页面 : <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta chars

使用远程shell工具SSH登录Linux主机,输完用户名回车后就卡住,10秒后才提示输入密码

使用远程shell工具SSH登录Linux主机,输完用户名回车后就卡住,10秒后才提示输入密码. 使用wireshark抓全过程包 因为ssh是加密了的协议,所以弄不懂里面内容是正常的,但可以加以过滤. 过滤栏:SSH 找到时间间隔大概为10s的NO.是x到y 过滤栏:frame.number>x&&frame.number<y 观察得出此处是DNS查询行为 原因:Linux服务器在收到SSH访问请求时,先会查询该客户端IP对应的PTR记录.假如经过5s没有收到回复,就再次发一

js实现多少秒后自动跳转

第一种使用SetInterval: $(function () { setInterval(ChangeTime, 1000); }); function ChangeTime() { var time; time = $("#time").text(); time = parseInt(time); time--; if (time <= 0) { window.location.href = "/Home/Index"; } else { $("

实现几秒后页面跳转

/* 功能: 实现几秒后跳转页面 */ window.onload=function(){ goTime(); } var goUrl="member_add.jsp"; function goTime(){ var time= parseInt(document.getElementById("timeId").innerHTML); time--; if(time==0){ window.location=goUrl; }else{ document.getEl