JS implements scheduled tasks, requesting background setInterval timing and ajax requests every N seconds

一个新手
Release: 2017-10-16 09:57:57
Original
3144 people have browsed it

DiGui = function (param) { $.ajax({ success: function (returnValue) { window.setInterval("fnSetMarkPoint()", 5000); } });
Copy after login

After calling theDiGui() method

Problem: Create a setInterval every 0.1 seconds in a tree shape Create setInterval in a loop until the page crashes

Solution: Ensure that the setInterval object is only created once

Implementation plan: Define a Boolean variable for judgment var status= true;


status = = .: = .setInterval("()", 5000
Copy after login

The above is the detailed content of JS implements scheduled tasks, requesting background setInterval timing and ajax requests every N seconds. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!