使用Jquery构建的滚动功能难以正常运行

时间:2019-06-14 23:11:04

标签: javascript jquery html css

在使我的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
      );
    }
});

预先感谢您的帮助

0 个答案:

没有答案