Наконец, я решаю это с помощью:
var timeLeft = 60;// Start from countdown
function timer() {
var i = setInterval(function () {
$('#time').text(timeLeft);
if (timeLeft === 1) timeLeft = 61;//Reload start
timeLeft--;
}, 1000)
}
function loadlink(){
$.get("./last_match.php").done(function(data){
$("#last").html(data);
});
}
loadlink(); // This will run on page load
setInterval(function(){
loadlink();//This will run every 60 seconds
}, 6000);
timer();
last_match. php содержит <span id='time'>
, которые показывают обратный отсчет.
Спасибо, что прочитали меня.