Skip to content

Instantly share code, notes, and snippets.

@bennyzhao
Created November 6, 2013 08:59
Show Gist options
  • Save bennyzhao/7333007 to your computer and use it in GitHub Desktop.
Save bennyzhao/7333007 to your computer and use it in GitHub Desktop.
setTimeout的优化 From http://www.jb51.net/article/26679.htm
setTimeout(function(){
//processing
setTimeout(arguments.callee, interval);
}, interval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment