2009/06/09

HTML、 Javascript、PHP 的網頁自動轉址方法

HTML

<meta http-equiv="refresh" content="0;url=http://www.google.com.tw" />


Javascript

<script>document.location.href="http://www.google.com.tw";</script>


PHP

<?php
    header
('Location: http://www.google.com.tw');
    exit;
?>


HTML:只能透過 <meta> refresh 的 0 秒自動重新整理來達到自動轉址的目的
Javascript 和 PHP:使用 location 接 url 的形式,乃自動轉址的本來形式

沒有留言 :

張貼留言