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:
thisObj = this; setTimeout(function() { thisObj.methodToCall(); }, time);
以上是关于JavaScript–欧元™s setTimeout以及如何将其与方法一起使用的主要内容,如果未能解决你的问题,请参考以下文章