我使用一个非常标准的滚动顶部片段来运行到我的某些页面上的某些部分,但我还有一些使用锚的其他功能(例如音频播放器的播放按钮、共享链接、滑块箭头)
有没有办法改进片段处理锚点的方式?也许与特殊课程或其他什么的链接?
$('a[href^="#"]').click(function(){
var the_id = $(this).attr("href");
$('html, body').animate({
scrollTop:$(the_id).offset().top - 100
}, 'slow');
return false;});