源码论坛,商业源码下载,尽在锦尚中国商业源码论坛
标题:
如何利用JS判断当前来路域名并跳转到指定页面
[打印本页]
作者:
洪七公
时间:
2023-4-21 09:42
标题:
如何利用JS判断当前来路域名并跳转到指定页面
每天学习很快乐!每天有进步很满足!
上一篇文章讲了indexOf()函数的使用方法,今天就来给大家适配一个indexOf()函数的应用场景:判断域名并且跳转到自定义结果!
1.如何利用JS判断当前来路域名并跳转到指定页面
var href = location.href ; //获取当前请求路径
if(href.indexOf("baidu")>-1){
//跳转
location.href = "http://baidu.com";
}
复制代码
2.输入不同的域名后载入不同网页头部,可以通过JS的判断来加载不同的CSS。
代码如下:
var host = window.location.host;
if (host=="lezi.66ghz.com")
{
document.write("<style>")
document.write(".head{ background: url(XXX)}")
document.write("</style>")
}
复制代码
3.不同的域名 输出不同的结果
<script type="text/javascript">
if (window.location.href.indexOf("seekstack.cn") > -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("s.seekstack.cn") > -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来操作比较简单粗暴一点,把上面这段一改就成自己的了,把下面这个文件往根目录一丢,万事大吉!
<!DOCTYPE html>
<html>
<head>
<title>正在玩命加载中……</title>
<!-- 判断来路域名自动跳转 -->
<script type="text/javascript">
if (window.location.href.indexOf("lezi.66ghz.com") > -1) {
window.location.href='http://seekstack.cn';
} else if (window.location.href.indexOf("tttp://s.thevv.top") > -1) {
window.location.href='tttp://s.seekstack.cn';
} else if (window.location.href.indexOf("www.bookhai.top") > -1) {
window.location.href='http:/seekstack.cn/book/';
}
</script>
</head>
<body>
</body>
</html>
复制代码
欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/)
Powered by Discuz! X3.3