1.  $(document).ready(function() {    
  2.             function jump(count) {    
  3.                 window.setTimeout(function(){    
  4.                     count--;    
  5.                     if(count > 0) {    
  6.                         $('#num').attr('innerHTML', count);    
  7.                         jump(count);    
  8.                     } else {    
  9.                         location.href="login.jsp";    
  10.                     }    
  11.                 }, 1000);    
  12.             }    
  13.             jump(3);    
  14.         });    

相关文章:

  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-04
  • 2022-03-04
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案