在这里给大家介绍一下,怎样让当前页面在指定时间跳转到指定页面 <script>function jump(){ location.href = "http://www.xxx.com/?pgv_ref=404";}setTimeout("jump()
在这里给大家介绍一下,怎样让当前页面在指定时间跳转到指定页面
<script>
function jump()
{
location.href = "http://www.xxx.com/?pgv_ref=404";
}
setTimeout("jump()", 5000);
</script>