Home > Web Front-end > JS Tutorial > Analysis of the problem of setTimeout constantly vomiting CPU_javascript skills

Analysis of the problem of setTimeout constantly vomiting CPU_javascript skills

WBOY
Release: 2016-05-16 18:54:49
Original
1441 people have browsed it
Copy code The code is as follows:



The above method is generally a more general method. Keep calling yourself every 5 seconds. In general applications, users will not notice anything wrong with a page containing such code. But if users need to stay in such a page for a long time, there will be problems. Because setTimeout will continue to "vomit" the CPU, slowly the CPU will eventually be eaten up by such code, causing IE to die or stop executing.
The solution is to use clearTimeout to clear it before the next call.
Copy code The code is as follows:


Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template