推薦
復制代碼 代碼如下:
<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="http://www.jb51.net";}
</script>
下面我們一個網站開發中用到的
復制代碼 代碼如下:
function gotourl()
{
var url = "http://www.jb51.net";
var localurl = document.url;
if( localurl.substring(0,url.length) != url )
{
location.href=url;
}
}
gotourl();