我正在使用此代码在页面内滚动。基本上检查内部链接,如果它们是间隔,则添加平滑滚动:
<script>
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
但是,我在同一页面中也有幻灯片。这使用来自 Bootstrap 的 Carousel。此代码与幻灯片冲突,我想为此禁用平滑滚动href
。
如何添加代码以防止这种冲突?