久久伦理影院I美女亚洲精品I手机色在线I免费韩国avI国产手机免费视频I久久99视频免费I懂色av懂色av粉嫩av分享吧I日本精品一区二区在线观看I开心综合网I国产一区在线观看免费I日韩欧美一区二区三区在线I一区av在线播放I精品综合久久久I日韩一区二区在线免费观看I国产99在线播放I色射色I国产精品一区二区在线免费观看

頁面重定向的幾種方法

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

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

 

JS實現頁面重定向

第一種:

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

第二種:

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

第三種:

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

第四種:

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

 第五種:

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

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

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