通过JS实现来路判断,如果不是指定来路跳转到指定页面。这个功能有多种实现办法,这里我们介绍常见的几种,分享给大家。
第一种
<script type="text/javascript"> if(self!=top){top.location=self.location;} var ref=document.referrer; var domains=new Array("vevb.com/","tao2t.com/","tao2t.net/"); var refpass=false; for(i=0;i<=domains.length;i++){if(ref.indexOf(domains[i])>0){refpass=true;break;}} if(ref==""){refpass=true} if(!refpass){window.location.href='http://www.vevb.com';} </script>
第二种
推荐使用
<script>function isMatch(str1,str2) { var index = str1.indexOf(str2); if(index==-1) return false; return true; } alert(window.location.hostname);if (isMatch(window.location.hostname,'www.vevb.com') == false){window.location.href="http://www.vevb.com";}</script>
第三种,这是我们一个网站开发中用到的
function gotourl(){ var url = "http://www.vevb.com"; var localurl = document.url; if( localurl.substring(0,url.length) != url ) { location.href=url; }}gotourl();
以上是用js实现判断当前网址的来路如果不是指定的来路就跳转到指定页面_javascript技巧的全部内容。
新闻热点
疑难解答