本文实例讲述了JavaScript基于setTimeout实现计数的方法。分享给大家供大家参考。具体实现方法如下:
var count = 0;var timer;var timerOn = false;function timedCount() { count++; timer = setTimeout(function(){ timedCount() }, 1000);}function doTimer() { if (!timerOn) { timerOn = true; timedCount(); }}function stopCount() { clearTimeout(timer); timerOn = false;}
希望本文所述对大家的javascript程序设计有所帮助。
新闻热点
疑难解答