//声明 t = 1

var t = 10;

function openwin() {

  t -= 1;

  if(t==0){

    location.href='index2.html';

  }

  setTimeout("openwin()", 300);

}

openwin();

相关文章:

  • 2021-09-21
  • 2022-01-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
  • 2022-02-08
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案