1.常用javascript跳转


[Ctrl+A 全部选择] 提示:你可先修改部分代码,再按运行

2.常用html跳转 <meta http-equiv="refresh" content="秒; url=下一个页面"> 可以设置跳转时间

3.带进度条和百分比的跳转代码



[Ctrl+A 全部选择] 提示:你可先修改部分代码,再按运行



常见SEO跳转代码
1: 
<script language="j avascript"> 
location.replace("http://www.wuyunlong.com") 
</script> 

2: 
<script language="j avascript">setTimeout(window.location="http://www.wuyunlong.com",0) 
</script> 

3: 
<script language="JavaScript" > 
bName = navigator.appName; 
if ((bName == "Netscape") || 
(bName == "Microsoft Internet Explorer")) window.location=http://www.wuyunlong.com; 
</script> 

<FRAMESET rows='*'> 
<FRAMESET cols='*'> 
<FRAME SRC='http://www.wuyunlong.com'> 
<noframes> 

JS实现跳转代码_多域名指向同一空间 

<script>try { if( self.location == "http://网站一/" ) { 
top.location.href = "http://网站一/目录"; 

else if( self.location == "http://网站二/" ) { 
top.location.href = "http://网站二/目录"; 

else if( self.location == "http://网站三/" ) { 
top.location.href = "http://网站三/目录"; 

else if( self.location == "http://网站四/" ) { 
top.location.href = "http://网站四/目录"; 

else { document.write ("错误的访问地址") } } catch(e) { }</script>