js实现倒计时

2021-11-17  本文已影响0人  程序媛_

function reloadPage(){

  var timer=10;

  var interval=setInterval(function(){

  $('#ishows').attr("style","display:block;");

  $('#ishows').text(timer+"s倒计时");

  timer-=1;

  if(timer==-1){

  clearInterval(interval)

  window.location.reload();

  }

  },1000);

  }

上一篇下一篇

猜你喜欢

热点阅读