1. Comment utiliser JS pour déterminer le nom de domaine actuel et accéder à la page spécifiée
获取当前请求路径 var href = location.href ; if(href.indexOf("baidu")>-1){ //跳转 location.href = "http://baidu.com"; }
2.
Aujourd'hui, un client a demandé à son site Web de saisir deux noms de domaine différents. . Différents en-têtes de page Web doivent être chargés. En y réfléchissant, je ne peux charger différents CSS que via le jugement JS.
Le code est le suivant :
host = window.location.host;if (host=="www.028wz.net") { document.write("<style>")document.write(".head{ background: url(document.write("</style>")}
3. Différents noms de domaine génèrent des résultats différents
<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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!