在使我的Jquery平滑滚动功能难以工作时,我不知道为什么它不起作用,请参见下面的代码
Class_model new_class_to_user_uid = new Class_model(date_class, teacher, room_number, null);
myRef.push().setValue(new_class_to_user_uid);
但是,当我单击导航栏时,会出现以下错误消息:
//Jquery Smooth Scroll
$('.navbar a').on('click', function(e) {
if (this.hash !== '') {
e.preventDefault();
const hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
},
800
);
}
});
预先感谢您的帮助