嘟嘟社区

[已解决] js大佬帮助看看这几行代码是什么意思


本帖最后由 Front 于 2022-4-21 10:34 编辑
  1. var url = location.search.substring(1);
  2.     if(!url) url = "http://www.hostloc.com"
  3.     url = unescape(url)
  4.     if(url.indexOf("http://") != 0){ url = "http://" + url; }
  5.     var domain = url.split(‘/’)
  6.     if( domain[2] ) {
  7.         if(domain[2].endsWith("hostloc.com") || domain[2].endsWith("hostloc.cn") ){
  8.         }else{
  9.             url ="http://www.hostloc.com"
  10.         }
  11.     }
  12.     location.href = url

复制代码

上面加了这几行后就无法用,这几行作用是什么?

  1. var domain = url.split(‘/’)
  2.     if( domain[2] ) {
  3.         if(domain[2].endsWith("hostloc.com") || domain[2].endsWith("hostloc.cn") ){
  4.         }else{
  5.             url ="http://www.hostloc.com"
  6.         }
  7.     }

复制代码

var domain = url.split(‘/’)
因为 单引号是 ” 不是 ‘’
强制跳转hostloc

Lish 发表于 2022-4-21 10:31
因为 单引号是 ” 不是 ‘’

原来是这里错了谢谢大佬