location.href 不工作,无法访问 link 位置

location.href is not working, can't acess to link location

我创建了一个“加载页面”,它应该是用户连接时看到的第一个页面。这是一个带有中央按钮的简单页面,人们必须单击该按钮。一旦他们这样做,他们就可以访问网站的其余部分。包括加载页面在内的所有页面都在同一个文件夹中。该网站的每个页面都有自己的:“XXXXX.html”。

所以我创建了一个 loader.html 页面,并实现了一个 javascript 函数,即:

let introBox = document.getElementById('intro');

introBox.addEventListener('click', function(){
    document.location.href = "main.html";
});
@keyframes sectionAnimation{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.5);
    }
    100%{
        transform: scale(1);
    }
}

html {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
}

*,*:before,*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background-color: #fff;
    padding: 0;
    margin: 0;
    height: auto;
    width: 100%;
    background-repeat: no-repeat;
    & img{
        width: 50%;
    }
}

.loaderbody{
    background-image: url('../../Assets/R.png');
}

b {
  position: relative;
  display: block;
  font-family: helvetica neue, helvetica, sans-serif;
  line-height: 1.15em;
  margin-top: -1.15em;
  top: 2.3em;
  font-size: 0.67em;
  font-weight: 400;
  letter-spacing: 0.025em;
  opacity: 0.75;
  text-align: center;
}

b span {
  font-size: 0.785em;
  font-weight: 400;
  opacity: 0.4;
}

#intro {
  width: 200px;
  margin:auto;
  margin-top:25%;
  animation: sectionAnimation 1.5s both infinite;
  transform:scale(1);
  
}

.button {
    display: inline-block;
    text-decoration: none;
    position: relative;
    margin-top: 40px;
}

.button .bottom {
    position: absolute;
    left: 7px;
    top: 7px;
    width: 100%;
    height: 100%;
    background-color: #2acdc1;
    display: block;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}

.button .top {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 24px 34px 22px 34px;
    border: 2px solid #04049d;
}

.button-dark .top {
    border: 2px solid #fff;
}

.button .top .label {
    font-family: sans-serif;
    font-weight: 600;
    color: #04049d;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}

.button-dark .top .label {
    color: #fff;
}

.button:hover .bottom {
    left: 0;
    top: 0;
    background-color: #f3f3f3;
}

.button:hover .top .label {
    color: #2acdc1;
}

.button-border {
    position: absolute;
    background-color: #2acdc1;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.button:hover .top .button-border-left,.button:hover .top .button-border-right {
    height: calc(100% + 2px);
}

.button:hover .top .button-border-top,.button:hover .top .button-border-bottom {
    width: calc(100% + 2px);
}

.button-border-left {
    left: -2px;
    bottom: -2px;
    width: 2px;
    height: 0;
}

.button-border-top {
    left: -2px;
    top: -2px;
    width: 0;
    height: 2px;
}

.button-border-right {
    right: -2px;
    top: -2px;
    width: 2px;
    height: 0;
}

.button-border-bottom {
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 2px;
}
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <link rel="stylesheet" type="text/css" href="../Css/main copie.css">
        <title>TP</title>
    </head>
    <body class="loaderbody">
      <script type="text/javascript" src="../Js/loader.js"></script>
      <section id="intro">
        <div id="intro-content" class="center-content">
      
          <div class="center-content-inner">
      
            <div class="content-section content-section-margin">
      
              <div class="content-section-grid clearfix">
              
              <a href="#" class="button nav-link">
      
                <div class="bottom"></div>
      
                <div class="top">
      
                <div class="label">Let's go !</div>
                  
                  <div class="button-border button-border-left"></div>
                  <div class="button-border button-border-top"></div>
                  <div class="button-border button-border-right"></div>
                  <div class="button-border button-border-bottom"></div>
      
                </div>
      
                </a>
      
              </div>
      
             </div>
      
            </div>
      
           </div>
      
        </section>
      </body>
</html>

元素“intro”是我加载页面上的按钮。但是,当我点击它时,我停留在相同的URL。我注意到,当我单击该框时,它会自动在我的 URL 末尾添加一个“#”。所以我假设该功能有点工作,并且检测到我的点击。

问题似乎与 .location.href 有关,但我无法理解。

非常感谢。

缺少斜杠 /,您的代码应如下所示:

introBox.addEventListener('click', function(){
    document.location.href = "/main.html";
});

如果你想重定向到你的网站之外,你必须添加双斜杠 //

document.location.href = "//google.com";

编辑:实际错误在带有href="#"的标签上,将其更改为"/main.html"。 如果愿意,您可以删除侦听器,不再需要它。