久久久久wwwI黄色av免费在线I久久久久麻豆I亚洲视频专区在线Iav大片网站I国产一区视频在线观看免费I97精品国产91久久久久久I狠狠色丁香婷婷

頁面重定向的幾種方法

2016/10/10 8:38:32   閱讀:1989    發布者:1989

下面是5種重定向的寫法,有興趣可以參考參考

 

JS實現頁面重定向

第一種:

<script language="javascript"type="text/javascript"> 
window.location.href="http://www.taidahchemical.com"; 
</script> 

第二種:

<script language="javascript"> 
alert("返回"); 
window.history.back(-1); 
</script> 

第三種:

<script language="javascript"> 
window.navigate("http://www.taidahchemical.com"); 
</script

第四種:

<script language="JavaScript"> 
self.location=’http://www.taidahchemical.com’; 
</script> 

 第五種:

<script language="javascript"> 
alert("非法訪問!"); 
top.location=’http://www.taidahchemical.com’; 
</script> 
 
html中meta標簽實現

只需在head里加上下面這一句就行了,在當前頁面停留0.1秒后跳轉到目標頁面

<meta http-equiv="refresh" content="0.1; url=http://www.taidahchemical.com/">
 
 
php實現
<?php
    header("Location: http://www.taidahchemical.com/");
?>