JS setinterval 时间控制的问题

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/... <!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" />
<title>无标题文档</title>
</head>
<script language="JavaScript">

function go()
{
t=5 //设定跳转的时间
document.getElementById('view').innerHTML = "<b>"+ "开始计时" +"</b>"; // 显示倒计时
window.setInterval("testTime()",1000); //启动1秒定时
}
function testTime()
{
if(t == 0)
{
location = "index.php";
}//#设定跳转的链接地

document.getElementById('view').innerHTML = "<b>"+ t +"</b>"; // 显示倒计时
t--; // 计数器递减
}

</script>
<body>
<div id="view">asd</div>
<input type="button" name="1" onclick="go()" value="按 钮">
</body>
</html>

为什么 连着点快一点 时间就乱跳了。。 请帮我解答 谢谢
楼下两位 能否 写一个 实例给我看看。 直接一点 呵呵 比如 我要倒数5秒 倒数过程要出来 谢谢

对了 我是在层里 调用这个。。 我在关闭层后 再打开层 就出现 时间加速的问题了 请问怎么解决
展开
 我来答
溜须拍马关云长
2008-12-28 · TA获得超过1708个赞
知道大有可为答主
回答量:2443
采纳率:0%
帮助的人:0
展开全部
<!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" />
<title>无标题文档</title>
</head>
<script language="JavaScript">
var f8=true;
function go()
{
if(!f8) return;f8=false;
t=5 //设定跳转的时间
document.getElementById('view').innerHTML = "<b>"+ "开始计时" +"</b>"; // 显示倒计时
window.setInterval("testTime()",1000); //启动1秒定时
}
function testTime()
{
if(t == 0)
{
f8=true;
location = "index.php";
}//#设定跳转的链接地

document.getElementById('view').innerHTML = "<b>"+ t +"</b>"; // 显示倒计时
t--; // 计数器递减
}

</script>
<body>
<div id="view">asd</div>
<input type="button" name="1" onclick="go()" value="按 钮">
</body>
</html>
辉煌kind
2008-12-28 · TA获得超过1484个赞
知道小有建树答主
回答量:751
采纳率:0%
帮助的人:764万
展开全部
连着点,相当于连着激发这个方法,当然要乱跳。可以在第一次点击后就让这个按钮无效,楼上的用flag判断也是一种方案。再有,对于这种有限次数的循环,用setTimeout的方式也许会更好些。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式