Javascript定时跳转
Posted 简庆旺的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javascript定时跳转相关的知识,希望对你有一定的参考价值。
因为做项目,用到跳转回上级页面,这里设置定时3秒跳转到目标页面
<script> setInterval("myInterval()",3000);//1000为1秒钟 function myInterval() { window.location.href=‘/crm/php/mail/editmail.php‘; } </script>
以上是关于Javascript定时跳转的主要内容,如果未能解决你的问题,请参考以下文章