jquery定时跳转页面的几个方法

2024年07月21日 建站教程

功能描述:当前页面出现404时,定时3秒自动跳到首页应该如何实现呢?下面web建站小编给大家介绍几个方法:

1、利用setTimeout()函数+$(location).attr()设置

setTimeout(function() {
	$(location).attr('href', 'https://lmcjl.com');
}, 5000);

2、利用setInterval

function goIndex() {
    var time = 3;
    time = time - 1;
    $("#time").html(time);
    if(time == 0) {
      window.location.href = 'https://lmcjl.com';
    }
  }

  $(function(){
    setInterval("goIndex()", 1000);
  });

本文链接:http://so.lmcjl.com/news/8899/

展开阅读全文
相关内容