求一段Javascript代码关于倒计时的
发布网友
发布时间:2022-04-22 15:03
我来回答
共2个回答
热心网友
时间:2022-04-22 16:32
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<div id="t">00:00:02:32</div>
<script language="javascript">
var m=2;
var s=32;
var i=0;//用来作标志
function counttime()
{
if(i==0)
{
if(s==0)
{
if(m==0)
{i=1;
return alert("时间已经到");
}
else
{
m=m-1;
s=60
}
}
s=s-1;
var showm=m;
var shows=s;
if(m<10)
{
showm="0"+m;
}
if(s<10)
{
shows="0"+s;
}
document.getElementById("t").innerHTML="00:00:"+showm+":"+shows;
}
}
setInterval("counttime()",1000);
</script>
</body>
</html>
热心网友
时间:2022-04-22 17:50
课本上不是有吗