1.如何利用JS判斷目前來路網域並跳到指定頁面
获取当前请求路径 var href = location.href ; if(href.indexOf("baidu")>-1){ //跳转 location.href = "http://baidu.com"; }
2.
今天有一客戶要求他的網站輸入兩個不同的網域後需要載入不同網頁頭部。思前想來,也只有透過JS的判斷來載入不同的CSS。
程式碼如下:
host = window.location.host;if (host=="www.028wz.net") { document.write("<style>")document.write(".head{ background: url(document.write("</style>")}
3.不同的網域 輸出不同的結果
<script type="text/javascript"> if (window.location.href.indexOf("www.xt.com") > -1) { document.write("<li style='background:none;'><a href='http://www.xt.com/yygk/yyjj/915.html'>介绍</a></li>"); } else if (window.location.href.indexOf("www.gzxt.com") > -1) { document.write("<li style='background:none;'><a href='http://www.gzxt.com/yygk/yyjj/916.html'>介绍</a></li>"); } else if (window.location.href.indexOf("www.gzxt.com") > -1) { document.write("<li style='background:none;'><a href='http://www.gzxt.com/yygk/yyjj/917.html'>介绍</a></li>"); } </script>
以上是如何用JS判斷目前網域並跳到指定頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!