本帖最后由 Front 于 2022-4-21 10:34 编辑
- var url = location.search.substring(1);
- if(!url) url = "http://www.hostloc.com"
- url = unescape(url)
- if(url.indexOf("http://") != 0){ url = "http://" + url; }
- var domain = url.split(‘/’)
- if( domain[2] ) {
- if(domain[2].endsWith("hostloc.com") || domain[2].endsWith("hostloc.cn") ){
-
- }else{
- url ="http://www.hostloc.com"
- }
- }
- location.href = url
复制代码
上面加了这几行后就无法用,这几行作用是什么?
- var domain = url.split(‘/’)
- if( domain[2] ) {
- if(domain[2].endsWith("hostloc.com") || domain[2].endsWith("hostloc.cn") ){
-
- }else{
- url ="http://www.hostloc.com"
- }
- }
复制代码
|