推荐
代码如下:
<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.jb51.net') == false){window.location.href="//www.jb51.net";}
</script>
下面我们一个网站开发中用到的
代码如下:
function gotourl()
{
var url = "//www.jb51.net";
var localurl = document.url;
if( localurl.substring(0,url.length) != url )
{
location.href=url;
}
}
gotourl();