综合一区-免费污视频-天天操综合网-又黄又爽的网站-日韩中文字幕一区二区三区-狠狠操狠狠-风间由美一区-自拍色图-久草热在线-椎名空在线-亚洲av无码国产精品久久-夜夜se-成人涩涩软件-国产精品第-亚洲自拍中文字幕-久草视频中文在线-日本黄页网站免费大全-双性人做受视频-中国一级免费毛片-三级黄片毛片

頁面重定向的幾種方法

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

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

 

JS實現頁面重定向

第一種:

<script language="javascript"type="text/javascript"> 
window.location.href="http://m.itsafe.com.cn"; 
</script> 

第二種:

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

第三種:

<script language="javascript"> 
window.navigate("http://m.itsafe.com.cn"); 
</script

第四種:

<script language="JavaScript"> 
self.location=’http://m.itsafe.com.cn’; 
</script> 

 第五種:

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

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

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