我正在改善一个小型网站,该网站的菜单固定在窗口的任何位置,您应该在此链接的ID在窗口中时激活该项目。

为了开始Enternder的工作方式,我把这个小提琴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");
   }
});


但是在现实生活中,在我要放置的网站上它不起作用,我无法理解,为什么?
留下无效的小提琴。

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。或根据我提到的细节修改提到的代码。

希望能帮助到你。

09-17 01:54