Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在此页面中向下滚动时,左侧上下文菜单会同时切换其样式。如何使用 jQuery 实现这种效果?
var t = $("#anchor-point").offset().top; $(document).scroll(function(){ if($(this).scrollTop() > t) { $('#voice2').css({"border-bottom":"2px solid #f4f5f8"}); $('#voice3').css({"border-bottom":"2px solid #2e375b"}); } });
参考
快乐编码:)