亚洲无码国产日韩欧美99|欧美亚洲永久电影三级成人|日韩a∨在线中文字幕30页|精品毛片直播一区二区|午夜欧美电影久久|国产日产欧产精品精乱子|黄色电影AA级亚洲播播|日韩免费黄色三级片电影|精品在线视频足久草在咸|欧美日韩美女在线免费视频播放

頁面重定向的幾種方法

2016/10/10 8:38:32   閱讀:1972    發(fā)布者:1972

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

 

JS實(shí)現(xiàn)頁面重定向

第一種:

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

第二種:

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

第三種:

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

第四種:

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

 第五種:

<script language="javascript"> 
alert("非法訪問!"); 
top.location=’http://m.heqianting.cn’; 
</script> 
 
html中meta標(biāo)簽實(shí)現(xiàn)

只需在head里加上下面這一句就行了,在當(dāng)前頁面停留0.1秒后跳轉(zhuǎn)到目標(biāo)頁面

<meta http-equiv="refresh" content="0.1; url=http://m.heqianting.cn/">
 
 
php實(shí)現(xiàn)
<?php
    header("Location: http://m.heqianting.cn/");
?>