如果将setInterval与某些代码一起使用,则在不同的浏览器中速度会有所不同。
但是如果我使用mootools的periodicical(),速度几乎完全相同,它是怎么做到的?有人可以给我举个例子并解释一下吗?
最佳答案
看起来像mootools(从version 1.3.2开始)只是调用setInterval
,因此其行为应相同:
periodical: function(periodical, bind, args){
return setInterval(this.pass((args == null ? [] : args), bind), periodical);
}
关于javascript - mootools如何使Periodical()在所有浏览器中都相同?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6602160/