Analysis of javascript timer and javascript

Source: Internet
Author: User

Analysis of javascript timer and javascript

SetTimeout () -- used to specify that a program is executed after a specific period of time.

Format:

[Timer object name =] setTimeout ("<expression>", in milliseconds );

Function: Run <expression> once.

The expression is a string that allows any javascript statement.

Copy codeThe Code is as follows:
<Html>
<Head>
<Script type = "text/javascript">
// Execute alert in 5 seconds
Function count (){
SetTimeout ("alert ('execution successfully');", 5000 );
}
</Script>
</Head>
<Body>
<Input type = "button" value = "run" onclick = "count ()">
</Body>
</Html>

SetInterval ()-repeated execution <expression> until the window and framework are closed or clearInterval is executed

Format: [Timer object name =] setInterval ("<expression>", millisecond)

ClearInterval () Termination Timer

Format: clearInterval (timer object name)

Copy codeThe Code is as follows:
<Html>
<Head>
<Script type = "text/javascript">
Var sec = 0;
Var timeId = setInterval ("count ();", 1000 );

Function count (){
Document. getElementById ("num"). innerHTML = sec ++;
}

Function stopCount (){
ClearInterval (timeId );
}
</Script>
</Head>
<Body>
<Font style = "color: red" id = "num"> 0 </font> seconds <input type = "button" value = "stop" onclick = "stopCount (); ">
</Body>
</Html>

Is it easy to use? If you need it, refer to it.

Related Article

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.