Scrolling child div scrolls the window, how do I stop that?

后端 未结 14 730
生来不讨喜
生来不讨喜 2020-11-30 18:03

I have a div, with a scroll bar, When it reaches the end, my page starts scrolling. Is there anyway I can stop this behavior ?

14条回答
  •  失恋的感觉
    2020-11-30 18:49

    $this.find('.scrollingDiv').on('mousewheel DOMMouseScroll', function (e) {
      var delta = -e.originalEvent.wheelDelta || e.originalEvent.detail;
      var scrollTop = this.scrollTop;
      if((delta < 0 && scrollTop === 0) || (delta > 0 && this.scrollHeight - this.clientHeight - scrollTop === 0)) {
        e.preventDefault();
      }
    });
    

提交回复
热议问题