当目标位于顶部滚动时,如何从菜单中激活一个项目?

How to activate an item from a menu, when the target is in top scroll?

我正在改进一个小网站,在window的任何位置都有一个固定的菜单,当这个链接的ID在window时,你应该激活该项目。

为了开始了解它的工作原理,我做了这个 fiddle http://jsfiddle.net/kanzer/ydwzwa49/1/ 这个很好用,这就是我想要的。

下面的代码对我帮助很大:

// Cache selectors
var lastId,
    topMenu = $("#prime-menu-slide"),
    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 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
         .parent().removeClass("active")
         .end().filter("[href=#"+id+"]").parent().addClass("active");
   }                   
});

但在现实生活中,我想把它放在网站上不起作用,我也看不懂,为什么?。 留下不起作用的fiddle。

http://jsfiddle.net/kanzer/ev6xn7rc/2/

感谢您的帮助!!! :)

看起来你的代码不喜欢这种链接:

<a href="#" class="fp_comment_click">Commentaires</a>

是因为这段代码:

scrollItems = menuItems.map(function(){
      var item = $($(this).attr("href"));

代码没问题,但如果 href="#"var item = $("#") --> 错误,js 就死了。

用这样的东西替换它(你必须找出正确的锚点):

<a href="#historique-et-anecdotes" class="fp_comment_click">Commentaires</a>

...它应该 work。或者修改提到的代码,记住我提到的细节。

希望对您有所帮助。