当目标div在视图中不起作用时,jQuery锚链接突出显示

时间:2017-07-25 04:16:47

标签: javascript jquery function scroll

我跟随此帖here的最佳答案。

指向JSFiddle

的直接链接

我尝试实施相同的策略,除了一部分不起作用,特别是最后一行。我的结构有点不同所以我不得不改变它。

原件:

 menuItems
  .parent().removeClass("active")
  .end().filter("[href='#"+id+"']").parent().addClass("active");

我不得不摆脱parent(),因为我的设置有点不同,但这打破了它。

 menuItems
  .removeClass("active")
  .end().filter("[href='#"+id+"']").addClass("active");

如果我保留第一个.parent(),它的一半有用,它就像我也不喜欢它一样删除它。所以我的问题是,我的版本的语法有什么问题,不包括.parent()

这是我的HTML结构:

<div class="content-wrap>
  <a class="side-link>Menu item 1</a>
  <a class="side-link>Menu item 2</a>
  <a class="side-link>Menu item 3</a>
</div>

1 个答案:

答案 0 :(得分:0)

在你的jQuery中搜索要突出显示的元素时,你需要在DOM中一步一步,这样就可以找到兄弟元素:

   menuItems
     .removeClass("active").parent()
     .end().filter("[href='#"+id+"']").addClass("active");

工作示例:

// Cache selectors
var lastId,
    topMenu = $("#top-menu"),
    topMenuHeight = topMenu.outerHeight()+15,
    // All list items
    menuItems = topMenu.find("a"),
    // Anchors corresponding to menu items
    scrollItems = menuItems.map(function(){
      var item = $($(this).attr("href"));
      if (item.length) { return item; }
    });

// Bind click handler to menu items
// so we can get a fancy scroll animation
menuItems.click(function(e){
  var href = $(this).attr("href"),
      offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+1;
  $('html, body').stop().animate({ 
      scrollTop: offsetTop
  }, 300);
  e.preventDefault();
});

// Bind to scroll
$(window).scroll(function(){
   // Get container scroll position
   var fromTop = $(this).scrollTop()+topMenuHeight;
   
   // Get id of current scroll item
   var cur = scrollItems.map(function(){
     if ($(this).offset().top < fromTop)
       return this;
   });
   
   // Get the id of the current element
   cur = cur[cur.length-1];
   var id = cur && cur.length ? cur[0].id : "";
   
   if (lastId !== id) {
       lastId = id;
       // Set/remove active class
       menuItems
         .removeClass("active").parent()
         .end().filter("[href='#"+id+"']").addClass("active");
   }                   
});
body {
    height: 6000px;
    font-family: Helvetica, Arial;
}

#top-menu {
    position: fixed;
    z-index: 1;
    background: white;
    left: 0;
    right: 0;
    top: 0;
}


#top-menu a {
    display: block;
    padding: 5px 25px 7px 25px;
    width: 6em;
    text-align: center;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
    border-top: 3px solid white;
    color: #aaa;
    text-decoration: none;
    float: left;
}

#top-menu a:hover {
    color: #000;
}

#top-menu a.active {
    border-top: 3px solid #333;
    color: #333;
}

#foo {
    position: absolute;
    top: 0px;
}

#bar {
    position: absolute;
    top: 800px;
}

#baz {
    position: absolute;
    top: 1200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="content-wrap" id="top-menu">
  <a class="side-link active" href="#">Menu item 1</a>
  <a class="side-link" href="#bar">Menu item 2</a>
  <a class="side-link" href="#baz">Menu item 3</a>
</div>


<a id="foo">Foo</a>


<a id="bar">Bar</a>


<a id="baz">Baz</a>