js关闭定时器 停止定时器,停止setTimeout,停止setInterval

我来纠错
var times1 = setTimeout(function(){
	console.log('http://www.fedrobots.com');
},1000);

clearTimeout(times1);  //停止times1的定时器


var times2 = setInterval(function(){
	console.log('http://www.fedrobots.com');
},1000);

clearInterval(times2);  //停止times1的定时器
发送
热门关键词:
命令
知识类型:
标题描述:
详细解答:

提交审核您编辑的知识会经过 前端大牛 人工审核。