这有几个办法:
1,使用后端跳转,如果是php的话:
<?php header(\location:url地址\) ?>
例如 <?php header(\location:helloworld.php\)?>
页面会立即跳转,因为header执行了location重定向
2,前端跳转可以用javascript:
<script type=ext/javascript\>
window.location.href=\helloworld.php\
</script>
3,前端也可以用使用HTML脚本代码完成跳转,在<head>标签里执行代码,直接插入这句代码就可以:
<meta http-equiv=efresh\" content=\"3;url='helloworld.php'\">
"