i want send ajax call with loop parameter named [id] in url starts request.php?id=1 ends id=9 and send every call after 3 second . I’m a beginner in the JavaScript, I don’t know where to start the idea, this is my code:
JavaScript
x
15
15
1
$.ajax({
2
type: 'POST',
3
url: 'request.php?id=1',
4
data: {apiId:actionBtn},
5
dataType: 'json',
6
cache: false,
7
beforeSend: function(){
8
$('.submitBtn').attr("disabled","disabled");
9
$('#addApi').css("opacity",".5");
10
},
11
success: function(response){
12
13
}
14
});
15
Advertisement
Answer
First, make the id
into a variable let id = 1;
. Then you can use the JavaScript setInterval
(https://developer.mozilla.org/en-US/docs/Web/API/setInterval) function to make a function-call every x seconds.
JavaScript
1
14
14
1
let id = 1;
2
3
// you can use a "fat-arrow" function or a function reference, look at the docs
4
const interval = setInterval(() => {
5
// your code here...
6
// use the variable "id" and increment it
7
i++;
8
9
// stop the interval when id is greater 9
10
if (id > 9) {
11
clearInterval(interval);
12
}
13
}, 3000); // 3000 is the time in milliseconds
14