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 중국어 웹사이트의 기타 관련 기사를 참조하세요!