标签: javascript angular typescript
我正在尝试使功能持续几秒钟。
类似这样的东西:
limitTo(function() { },4000 );
如何限制功能时间?
答案 0 :(得分:0)
我喜欢这样:
var isFinished= false; setTimeOut(function(){ isFinished=true; },500); while (isFinished) { text += "The number is " + i; i++; }