可以自動跳轉到另一個網址?
這有幾個辦法:
1,使用后端跳轉,如果是php的話:
<?php header("location:url地址") ?>
例如 <?php header("location:helloworld.php")?>
頁面會立即跳轉,因為header執行了location重定向
2,前端跳轉可以用javascript:
<script type="text/javascript">
window.location.href="helloworld.php"
</script>
3,前端也可以用使用HTML腳本代碼完成跳轉,在<head>標簽里執行代碼,直接插入這句代碼就可以:
<meta http-equiv="refresh" content="3;url='helloworld.php'">