JavaScript non-stop (setinterval)/delay (settimeout) function use instance _javascript technique

Source: Internet
Author: User
SetTimeout (Script,millisecond); Run the code (once only once) from how many microseconds it is now
SetInterval (Script,millisecond); Is running code every few microseconds
Example:
1. Implementation of a
<span id = "Time" ></span> sec <script type = "Text/javascript" > var i = 1; var txt = document.getElementById ("Time"); function Addt (i) {txt.innerhtml = i; } settimeout ("Addt (i++)", 1000); </script>
[Ctrl + A All SELECT Note: If the need to introduce external JS need to refresh to perform]

2. Replication execution
<span id = "Time" > 3 </span> sec <script type = "Text/javascript" > var i = 1; var txt = document.getElementById ("Time"); function Addt (i) {txt.innerhtml = i; } setinterval ("Addt (i++)", 1000); </script>
[Ctrl + A All SELECT Note: If the need to introduce external JS need to refresh to perform]

SetTimeout can also be done repeatedly.
<span ID = "Time" ></span> sec <script type = "Text/java Script "> var i = 1; var txt = document.getElementById ("Time"); function Addt (i) {txt.innerhtml = i; SetTimeout ("ADDT (i++)", 1000); } ADDT (i); </script>
[ctrl+a All selected note: If you need to introduce external JS need to refresh to perform]
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.