定时器函数:
1、一次性定时器 var ID=setTimeout(function(){},2000);
清除:clearTimeout(ID);
2、循环定时器 var ID=setInterval(function(){},2000);
清除:clearInterval(ID);