JavaScript–欧元™s setTimeout以及如何将其与方法一起使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript–欧元™s setTimeout以及如何将其与方法一起使用相关的知识,希望对你有一定的参考价值。

Everything works as expected for the setTimeout() function until you try to call a method inside your ‘class’ (there are no real classes in javascript). Something like this won’t work:

setTimeout(this.methodToCall, time);
Passing a string representation instead of reference doesn’t work either.

So here is the simple solution:
  1. thisObj = this;
  2. setTimeout(function() { thisObj.methodToCall(); }, time);

以上是关于JavaScript–欧元™s setTimeout以及如何将其与方法一起使用的主要内容,如果未能解决你的问题,请参考以下文章

长期在JavaScript?

欧元格式剑道网格列 Angular JS

如何为Magento提供“谷歌+1欧元”的扩展

如何在文本框中插入符号(英镑、欧元、版权)

JavaScript 计时

同步和异步 setTimeou(异步) async和await promise(疑惑点)