黑帽联盟
标题:
用js实现判断当前网址的来路如果不是指定的来路就跳转到指定页面
[打印本页]
作者:
feihu
时间:
2017-7-3 22:53
标题:
用js实现判断当前网址的来路如果不是指定的来路就跳转到指定页面
本帖最后由 feihu 于 2017-7-3 22:56 编辑
用js实现判断当前网址的来路如果不是指定的来路就跳转到指定页面
<script type="text/javascript">
if(self!=top){top.location=self.location;}
var ref=document.referrer;
var domains=new Array("cnblackhat.com/","yunrank.cn/","bbs.cnblackhat.com/");
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.;}
</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,'bbs.cnblackhat.com') == false){window.location.href="https://bbs.cnblackhat.com";}
</script>
复制代码
下面我们一个网站开发中用到的
function gotourl()
{
var url = "https://bbs.cnblackhat.com";
var localurl = document.url;
if( localurl.substring(0,url.length) != url )
{
location.href=url;
}
}
gotourl();
复制代码
作者:
huangjia
时间:
2017-7-4 07:08
谢谢分享,学习了
欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/)
Powered by Discuz! X2.5