因为做项目,用到跳转回上级页面,这里设置定时3秒跳转到目标页面

 <script>
        setInterval("myInterval()",3000);//1000为1秒钟
        function myInterval()
        {
            window.location.href='/crm/php/mail/editmail.php';
        }
    </script>

 

相关文章:

  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-18
  • 2022-12-23
  • 2022-01-18
  • 2022-03-08
  • 2021-12-31
相关资源
相似解决方案