我使用脚本平滑滚动我的页面,但脚本不起作用我很困惑我错在哪里请帮助我
我的脚本是:
$(".scroll").click(function(event){
event.preventDefault();
//calculate destination place
var dest=0;
if($(this.hash).offset().top > $(document).height()-$(window).height()){
dest=$(document).height()-$(window).height();
}else{
dest=$(this.hash).offset().top;
}
//go to destination
$('html,body').animate({scrollTop:dest}, 1000,'swing');
});
我在锚标记中使用了 .scroll 这种类型:
<a class="scroll" href="#bot">Click here</a>
请帮我!