1. 程式人生 > >PHP 頁面重新整理與跳轉的方法彙總

PHP 頁面重新整理與跳轉的方法彙總

1、HTML meta標籤

<meta http-equiv='content-type' content="text/html;charset=utf-8"/>

 

2、實現頁面重新整理

<meta http-equiv='refresh' content='秒數'/>

3、實現頁面跳轉

<meta http-equiv="refresh" content="秒數;url=目標文件的URL"/>

 

 

4、PHP header()函式

header("location:目標文件的URL");

 

5、JS location.href

<script type="text/javascript">

    location.href='目標文件的URL';

</script>