search
HomeWeb Front-endJS TutorialDifferences between setTimeout and setInterval in different browsers_javascript skills

. (Newbies may think that setTimeout and setInterval are javascript functions, which is wrong. Newbies can easily confuse javascript object functions with DOM object methods.)

Let’s start with a piece of code. Guess what it looks like under various browsers. What will the result be?

Copy code The code is as follows:

function f(){
var s = ' arguments.length:' arguments.length '; ';
for(var i=0,n=arguments.length;is = ' [' i ']:' arguments[ i] '; ​​';
}
alert(s);
}
setTimeout(f,500,"javascript","AAA")

I am here What we want to discuss is not when to use which one, but the differences between these two methods in each browser.
Originally, I never thought that these two methods would have any consequences. I learned about them by chance. Now I have sorted them out and written them down to share with you.
Because the parameters and usage of setTimeout and setInterval are the same, but the functions are different, so to save trouble, I will only use setTimeout as an example to explain and give examples.
The most commonly used forms of setTimeout are probably as follows:
Copy code The code is as follows:

iTimerID = setTimeout(strJsCode, 50) //strJsCode is a string containing js code
iTimerID = setTimeout(objFunction, 50) //objFunction is a function object

The first calling method is to pass a string containing js code. The advantage of this method is that it is concise, but the disadvantage is that it has poor operating efficiency, is not conducive to syntax analysis, has potential risks, and more importantly, the processing is more complicated. The content is more laborious, which is consistent with the disadvantages of eval.
So, we believe that it is usually better to use the second method of calling. (My examples below all use the second calling method)

Now let’s reveal the results of the first piece of code under various browsers:
IE(6,7,8) is: arguments. length:0;
Opera(6,7,8) is: arguments.length:2; [0]:javascript; [1]:AAA;
Firefox(3.0) is: arguments.length:3; [0]:javascript; [1]:AAA; [2]:-15;
There is such a big difference, it is really "you sing your song, I hum mine"!
Under Firefox (3.0), the last number obtained is not specific. Sometimes it is 0, sometimes it is a negative number. We will discuss this issue later.
(1) setTimeout in the IE series
First, let’s take a look at what the DHTML reference manual published by Microsoft says:
setTimeout Method
Evaluates an expression after a specified number of milliseconds has elapsed .
Syntax
iTimerID = window.setTimeout(vCode, iMilliSeconds [, sLanguage])
Parameters
vCode Required. when the specified interval has elapsed.
iMilliSeconds Required. Integer that specifies the number of milliseconds.
sLanguage Optional. String that specifies one of the following values:
JScript Language is JScript.
VBScript Language is VBScript.
JavaScript Language is JavaScript.
Instructions on setTimeout on MSDN:
http://msdn.microsoft.com/en-us/library/ms536753(VS.85).aspx
In other words, setTimeout receives 3 parameters. The third parameter indicates the type of scripting language. If you pass in more parameters, it is meaningless.
So, in IE, both of the following are correct.
setTimeout('alert(1)', 50);
setTimeout('msgbox "Terminate, retry, ignore, it's up to you.", vbAbortRetryIgnore vbDefaultButton2, "Tell you"', 50, ' VBScript');
(2) setTimeout in the Mozilla series
Let’s take a look at what the Gecko DOM Reference manual on the Mozilla official website says:
window.setTimeout
Summary
Executes a code snippet or a function after specified delay.
Syntax
var timeoutID = window.setTimeout(func, delay, [param1, param2, ...]);
var timeoutID = window.setTimeout(code, delay);
The first two parameters are the same, there is no difference, but the third parameter is different.
Because currently only IE browser supports scripts in multiple languages, other browsers only support js scripts, so there is no need to pass language type parameters.
Mozilla passes the third and subsequent parameters passed to setTimeout to the previous func as parameters in sequence.
The same is true for Firefox, Opera, Safari, Chrome, etc.
But I noticed that Mozilla said that its setTimeout has a bug called "Lateness" argument.
"Lateness" argument
Functions invoked by setTimeout are passed an extra "lateness" argument in Mozilla,
i.e., the lateness of the timeout in milliseconds. (See bug 10637 and bug 394769.)
This is the source of an own number in Firefox (3.0) in the example at the beginning.
Instructions on setTimeout on Mozilla:
https://developer.mozilla.org/en/DOM/window.setTimeout
(3) setTimeout in other browser series (Opera, Safari, Chrome)
Basically the same as the one in the Mozilla series, but there is no bug with one extra parameter in the Mozilla series.

Wulin Gaiden: Tips for using setTimeout
(1) Calling setTimeout in IE Function passing parameters
From the above analysis, we can see that IE does not support passing parameters to the called function in setTimeout. For the sake of harmony in the browser world, we can wrap the function calling parameters into a new anonymous function. Example:

Copy code The code is as follows:
function f(a){
alert (a);
}
// setTimeout(f,50,'hello'); //For non-IE
setTimeout(function(){f('hello')},50); //General
var str='hello';
setTimeout(function(){f(str)},50); //General

(2)this question
The context when the function called by setTimeout is executed is the global context, not the context when the setTimeout method is called. Therefore, when the function with the first parameter of setTimeout is executed, its this points to the window. If you need to retain this when calling the setTimeout method, you need to pass this in. Example:

Copy code The code is as follows:

function Person(name){
this.name=name;
var f=function(){alert('My name is ' this.name)};
// setTimeout (f,50); //Error
var THIS=this;
setTimeout(function(){f.apply(THIS)},50); //Correct, universal
setTimeout(function() {f.call(THIS)},50); //Correct, universal
}
new Person('Jack');

That's all.
Posting is not a mental job, it is actually a physical job, organizing text, writing examples, and formatting. These non-technical things are the most tiring and time-consuming.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
settimeout和setinterval有什么区别settimeout和setinterval有什么区别Aug 15, 2023 pm 02:06 PM

settimeout和setInterval的区别:1、触发时间,settimeout是一次性的,它在设定延迟时间之后执行一次函数,而setinterval是重复性的,它会以设定的时间间隔重复执行函数;2、执行次数,settimeout只执行一次,而setinterval会一直重复执行,直到被取消。

如何使用setInterval函数定时执行代码?如何使用setInterval函数定时执行代码?Nov 18, 2023 pm 05:00 PM

如何使用setInterval函数定时执行代码?在JavaScript中,setInterval函数是一个非常有用的函数,它可以定时执行一段代码。通过setInterval函数,我们可以在特定的时间间隔内重复执行指定的代码。本文将详细介绍如何使用setInterval函数,并提供具体的代码示例。一、setInterval函数的基本语法如下:setInterv

Window.setInterval()方法怎么使用Window.setInterval()方法怎么使用Aug 31, 2023 am 09:33 AM

Window.setInterval() 方法的基本语法是“window.setInterval(function, delay)”,function是要重复执行的函数或代码块,delay是每次执行之间的时间间隔,以毫秒为单位。该方法是JavaScript中用于定时重复执行指定函数或代码的方法,它的使用非常简单,只需要传入要执行的函数或代码块以及重复执行的时间间隔。

setInterval如何停止setInterval如何停止Dec 11, 2023 am 11:39 AM

可以使用clearInterval函数来停止由setInterval函数创建的定时器。setInterval函数会返回一个唯一的定时器ID,可以将该ID作为参数传递给clearInterval函数,以停止定时器的执行。

setIntervalsetIntervalAug 02, 2023 am 10:17 AM

setInterval函数是JavaScript中的一个定时器函数,允许你设置一个间隔,并在每个间隔之后执行指定的代码,需要定期处理某些任务或实时更新页面元素的情况非常有用,要注意使用setInterval时的性能和可靠性问题,并根据需要进行优化。

setTimeout()和setInterval()在JavaScript中有什么区别?setTimeout()和setInterval()在JavaScript中有什么区别?Sep 01, 2023 pm 03:01 PM

setTimeout(function,duration)-该函数在duration毫秒后调用函数。这适用于一次执行。让我们看一个例子-它等待2000毫秒,然后运行回调函数alert(‘Hello’)-setTimeout(function(){alert('Hello');},2000);setInterval(function,uration)-此函数在每duration毫秒后调用function。这可以无限次进行。让我们看一个例子-它每2000毫秒触发一次警

setinterval用法详解setinterval用法详解Sep 12, 2023 am 09:55 AM

setinterval用法是“setInterval(function, delay);”,“function”是要执行的函数,可以是函数表达式或函数引用,“delay”是执行函数之间的时间间隔,以毫秒为单位。setInterval是JavaScript中用于周期性执行代码的函数,它接受一个函数和一个时间间隔作为参数,会按照指定的时间间隔重复执行函数。

在JavaScript中使用clearTimeout函数取消setTimeout的计时器在JavaScript中使用clearTimeout函数取消setTimeout的计时器Nov 18, 2023 am 08:05 AM

在JavaScript中使用clearTimeout函数取消setTimeout的计时器,需要具体代码示例在JavaScript中,setTimeout函数是用来在指定的时间延迟后执行一次特定的代码。而setInterval函数则是用来在指定的时间间隔内重复执行一段特定的代码。然而,在某些情况下,我们可能需要在定时器执行之前取消它。在这种情况下,就可以使用c

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use