“Função de chamada após 2 segundos JavaScript” Respostas de código

JavaScript após a função de chamada de tempo

/*
You can use JavaScript Timing Events to call function after certain interval of time:

This shows the alert box every 3 seconds:
*/

setInterval(function() {alert("Hello")},3000);

/*
1. setInterval(): executes a function, over and over again, at specified time intervals
2. setTimeout() : executes a function, once, after waiting a specified number of milliseconds
*/
Zwazel

JavaScript executa algo depois de x segundos

setTimeout(function(){
  location.reload();
}, 3000); //run this after 3 seconds
SantiBM

Função de chamada após 2 segundos JavaScript


  setTimeout(
    function() {
      document.getElementById('div1').style.display='none';
      document.getElementById('div2').style.display='none';
    }, 5000);
Energetic Eland

Respostas semelhantes a “Função de chamada após 2 segundos JavaScript”

Perguntas semelhantes a “Função de chamada após 2 segundos JavaScript”

Mais respostas relacionadas para “Função de chamada após 2 segundos JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código