我是Bootstrap中的jQuery新手,并做了一个w3school Tutorial来为页面添加平滑滚动。只要锚点在同一页面上,这就可以正常工作。我添加了一个印记,并希望在那里有相同的菜单,所以链接不指向另一个页面上的锚点(例如home.html#section1)。
但是目前这不起作用 - 点击链接根本没有任何效果。
脚本代码:
<script>
$(document).ready(function(){
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='#home']").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
$(window).scroll(function() {
$(".slideanim").each(function(){
var pos = $(this).offset().top;
var winTop = $(window).scrollTop();
if (pos < winTop + 600) {
$(this).addClass("slide");
}
});
});
})
</script>
当我从版本说明页面删除代码段时,锚链接正在运行,但由于没有滚动,home.html页面的动画部分无法加载(直到我手动滚动的那一刻,然后它们将加载)。 谢谢你的帮助!
答案 0 :(得分:0)
假设您仅使用锚链接,请删除e.preventDefault()
。