为了账号安全,请及时绑定邮箱和手机立即绑定

Uncaught RangeError: Maximum call stack size exceeded?what?

<!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>
		<link rel="stylesheet" href="style.css" />
	</head>

	<body>
		<div class="content3">
			<div class="time">还剩 <span id="LeftTime"></span></div>
		</div>
		<script>
			window.onload = function() {
				ftime();
			}

			function ftime() {
				var endtime = new Date('2016/07/09,12:20:12');
				var nowtime = new Date();
				var lefttime = parseInt((endtime.getTime() - nowtime.getTime()) / 1000);
				//alert(lefttime);
				d = parseInt(lefttime / 3600 / 24);
				h = parseInt((lefttime / 3600) % 24);
				m = parseInt((lefttime / 60) % 60);
				s = parseInt(lefttime % 60);
				document.getElementById("LeftTime").innerHTML = d + "天" + h + "小时" + m + "分" + s + "秒";
				if (lefttime <= 0) {
					document.getElementById("LeftTime").innerHTML = "团购已结束";
					clearInterval(sh);
				}
				var sh;
				sh=setTimeout(ftime(),500);
			}
		</script>
	</body>

</html>

如题,第二十行。。。

正在回答

1 回答

 sh=setTimeout(ftime(),500);

可以改成 sh=setTimeout('ftime()',500);或者 sh=setTimeout(ftime,500);或者sh=setTimeout(function(){ftime()},500);

1 回复 有任何疑惑可以回复我~
#1

飞天意大利面神兽 提问者

非常感谢!
2016-07-07 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
倒计时效果
  • 参与学习       55626    人
  • 解答问题       242    个

电商网站限时抢购倒计时效果计算思路和方法,前端开发必备技术

进入课程

Uncaught RangeError: Maximum call stack size exceeded?what?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信