<script type="text/javascript"> 
    var t = 1.5; 
    window.onload=countDown; 
    function countDown(){ 
        var time = 5; 
        t--; 
        time.value=t; 
        if (t<=0) { 
        location.href="${ROOT_PATH }VipOrder/index"; 
        }; 
    } 
    var inter = setInterval("countDown()",1000); 
</script>

 

相关文章:

  • 2022-02-13
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2021-05-29
  • 2021-08-24
猜你喜欢
  • 2022-01-18
  • 2021-06-22
  • 2021-09-29
  • 2021-10-15
  • 2021-12-15
  • 2021-09-21
相关资源
相似解决方案