导航菜单

setinterval是什么意思_翻译中文_怎么读

setinterval

网络释义:设置时间间隔;定时器;设置间隔

网络释义

1.设置时间间隔 set variable 设置变量 setinterval 设置时间间隔 setproperty 设置属性值 ...

2.定时器 scrollTo[ 卷动到], setInterval[ 设置间隔], setTimeout[ 设置超时], ...

4.定时局部刷新

5.配置间隔 ... scrollTo[ 卷动到], setInterval[ 配置间隔], setTimeout[ 配置超时], ...

6.表达式 toolbar 浏览器工具栏 setInterval (表达式,毫秒) setTimeout (表达式,毫秒) ...

7.全面的介绍 TextSnapshot 对象 setInterval 全面的介绍 AS2 边缘柔化类 ...

8.定时启动的程式 9-5 键盘对应「 keyCode」 9-7 定时启动的程式setInterval」 9-8 碰撞侦测「 hitTestObject」 ...

例句释义:,设置时间间隔,定时器,设置间隔

1.var id = setInterval(fn, delay); - Similar to setTimeout but continually calls the function (with a delay every time) until it is canceled.varid=setInterval(fndelay);-与setTimeout类似,只不过它会持续地调用指定的函数(每次都有一个延时),直到timer被取消为止。

2.Let's take a look at an example to better illustrate the differences between setTimeout and setInterval.让我们来看一个例子,这个例子更好地阐释了setTimeout和setInveral之间的区别。

3.To start with, within the first block of JavaScript, two timers are initiated: a 10ms setTimeout and a 10ms setInterval.刚开始,在第一个JavaScript块中,有两个timer被初始化了:一个10ms的setTimeout和一个是10ms的setInterval。

4.setTimeout and setInterval are fundamentally different in how they execute asynchronous code.setTimeout和setInterval在如何执行代码上有着本质地区别。

5.You will define anonymous functions that use the self variable and pass them to the setTimeout and setInterval functions as arguments.然后,定义使用self变量的匿名函数,并将它们作为参数传递给setTimeout和setInterval函数。

6.This is common in many apppcations, and many developers use JavaScript's setInterval function for this.这在很多应用程序中十分常见,开发人员会使用JavaScript的setInterval函数来实现这个操作。