Home Web Front-end JS Tutorial Javascript delayed execution implementation method (setTimeout)_javascript skills

Javascript delayed execution implementation method (setTimeout)_javascript skills

May 16, 2016 pm 06:12 PM
settimeout Delayed execution

1. Delayed tab switching
Requirement: There are several tabs on the page. When switching tabs, the data in a specific area will be pulled and updated.
Disadvantage: If the user switches from the first tab to the end quickly, n ajax requests will be generated. In fact, the user only needs to see the data of the last tab.
Copy code The code is as follows:

var changeTab = function(){
var timeId = 0;
return function(tabId){
if(timeId){
clearTimeout(timeId);
timeId=0;
}
setTimeout(function(){
//ajax do something
},500);
};
}();

A relatively simple example, bind onmouseover on tab, if The user keeps switching tabs back and forth, and the ajax request will not be executed. It will only be executed after a pause of 500 milliseconds. 500 milliseconds is actually quite short and will basically not affect the user experience.

2. Delayed auto-complete
Requirement: In the text input box, monitor user input to implement the auto-complete function.
Disadvantages: Every time the user inputs a character, an ajax request will be generated. If the user continuously inputs a long string of content, the number of requests will be many. In fact, the last one is what the user needs.
The code is similar to the example above.

3. Delayed scrolling
Requirement: The advertisement on the page should follow wherever the user scrolls.
Disadvantage: The user scrolls to the bottom, triggering the function to reposition the advertisement N times. In fact, it only needs to be triggered once when the user stops.
The code is similar to 1.

In fact, there are many such examples. Some things do not need to be executed immediately. They can be delayed for a while. The time is very short, does not affect the user experience, and can reduce a lot of unnecessary consumption.
Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to execute a function in php after a few seconds How to execute a function in php after a few seconds Apr 24, 2022 pm 01:12 PM

Implementation method: 1. Use the "sleep (delay seconds)" statement to delay the execution of the function for several seconds; 2. Use the "time_nanosleep (delay seconds, delay nanoseconds)" statement to delay the execution of the function for several seconds and nanoseconds. ;3. Use the "time_sleep_until(time()+7)" statement.

An analysis of the causes and effects of jQuery's delayed execution An analysis of the causes and effects of jQuery's delayed execution Feb 27, 2024 pm 04:42 PM

jQuery is a popular JavaScript library that provides a wealth of functions and methods, which greatly simplifies the process of writing and programming JavaScript code. In the process of using jQuery, we often encounter situations where we need to delay the execution of certain operations. This delayed execution plays an important role in actual development. This article will explore the reasons and effects of jQuery's delayed execution, and provide specific code examples. 1. Why is it necessary to delay execution? In front-end development, sometimes we need to wait

What is the difference between settimeout and setinterval What is the difference between settimeout and setinterval Aug 15, 2023 pm 02:06 PM

The difference between settimeout and setInterval: 1. Trigger time, settimeout is one-time, it executes the function once after setting the delay time, while setinterval is repetitive, it will execute the function repeatedly at the set time interval; 2. Execution times, settimeout is only executed once, and setinterval will be executed repeatedly until canceled.

Clever use of delayed execution of golang functions Clever use of delayed execution of golang functions Apr 25, 2024 pm 02:21 PM

The lazy execution feature of the Go language allows programmers to execute function calls after the function returns. Its main use cases include: Lazy initialization: Delay initialization of large objects or structures until needed. Post-processing: Perform cleanup or post-processing operations after the function returns. Concurrent programming: schedule background tasks to run outside the main goroutine.

Discuss the technical implementation and advantages of jQuery delayed execution Discuss the technical implementation and advantages of jQuery delayed execution Feb 28, 2024 am 08:09 AM

jQuery is a very popular JavaScript library that is widely used in web development. In the process of web development, we often encounter situations where we need to delay the execution of certain operations, and jQuery provides a variety of methods to achieve delayed execution. This article will explore the technical implementation of jQuery delayed execution and its advantages. 1. Use the setTimeout function to implement delayed execution. The setTimeout function is a timer function provided by JavaScript. It can be executed after a specified time interval.

What is the difference between setTimeout() and setInterval() in JavaScript? What is the difference between setTimeout() and setInterval() in JavaScript? Sep 01, 2023 pm 03:01 PM

setTimeout(function,duration) - This function calls the function after duration milliseconds. This works for one execution. Let's see an example - it waits for 2000 milliseconds and then runs the callback function alert('Hello') - setTimeout(function(){alert('Hello');},2000); setInterval(function,uration) - this function is The function is called after every duration milliseconds. This can be done an unlimited number of times. Let's see an example - it triggers an alarm every 2000 ms

Why does jQuery need delayed execution? Analysis and practice Why does jQuery need delayed execution? Analysis and practice Feb 27, 2024 pm 06:12 PM

Why does jQuery need delayed execution? Analysis and practice In front-end development, jQuery is a widely used JavaScript library. It simplifies DOM operations, event processing, animation effects and other functions, providing convenience for developers. However, sometimes we will find some problems, that is, under certain circumstances, jQuery needs to delay execution to achieve the desired effect. This article will analyze why jQuery requires delayed execution from both principles and practice, and provide specific code examples. one,

Use the clearTimeout function in JavaScript to cancel the setTimeout timer Use the clearTimeout function in JavaScript to cancel the setTimeout timer Nov 18, 2023 am 08:05 AM

To use the clearTimeout function in JavaScript to cancel the setTimeout timer, you need specific code examples. In JavaScript, the setTimeout function is used to execute a specific code after a specified time delay. The setInterval function is used to repeatedly execute a specific code within a specified time interval. However, in some cases we may need to cancel the timer before it executes. In this case, you can use c

See all articles