我在div
和链接中有一个IdSection1
问题:当我滚动页面和页面到达id时,#Section1
应该在链接中添加一个类,链接应该是Section1
你可以像这样使用:
$(window).scroll(function (event) { var scroll = $(window).scrollTop(); $('#link').toggleClass('ok', //add 'ok' class when div position match or exceeds else remove the 'ok' class. scroll >= $('#Section1').offset().top ); }); //trigger the scroll $(window).scroll();//ensure if you're in current position when page is refreshed
请参阅toggleClass的文档.