Use of JS SetTimeout ()

Source: Internet
Author: User

First, the grammar


SetTimeout (CODE,MILLISEC)


Code: is a string that contains JavaScript statements. This statement may be such as "alert (' 5 seconds! ')", or a call to a function, such as alertmsg ().


millisec: Indicates the number of milliseconds after which the first parameter is executed.

Second, SetTimeout (CODE,MILLISEC) The use of code containing formal parameters

For example

var msg= ‘dfdsf‘ ;

SetTimeout (Alert (msg),+); // alert (msg) will be executed immediately


SetTimeout ("Alert (msg)",+); // System Error


The workaround is to use the anonymous function callback

var msg= ' fewweeeee ';

SetTimeout (function () {alert (msg);},1000);




Reference: JS setTimeout http://www.studyofnet.com/news/916.html


This article is from the "Learning also leisure" blog, please be sure to keep this source http://studyofnet.blog.51cto.com/8142094/1694030

Use of JS SetTimeout ()

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.