将一个页面meta refresh设置一下,就可以控制页面过几秒跳转,但是怎么在ajax中也让他跳转呢?
如果直接location.href跳转,那么太突然,可以先显示一段提示,然后再跳转.
<script>
var the_timeout = setTimeout("location='teacher.html'",3000); //3秒后跳转
</script>
将一个页面meta refresh设置一下,就可以控制页面过几秒跳转,但是怎么在ajax中也让他跳转呢?
如果直接location.href跳转,那么太突然,可以先显示一段提示,然后再跳转.
<script>
var the_timeout = setTimeout("location='teacher.html'",3000); //3秒后跳转
</script>