How to trigger an on scroll event without scrolling

前端 未结 8 1212
梦毁少年i
梦毁少年i 2021-02-12 03:15

my Question is, how can i trigger (simulate or something esle) an on scroll event. In my special case I don\'t want to load all the Conservations in LinkedIn by scolling down al

8条回答
  •  野性不改
    2021-02-12 04:02

    Sometimes you need find the scrollElement. In my case, my scrollElement is body and running on mobile, so below code works fine:

    document.body.scrollTo(window.scrollX, window.scrollY + 1);

    Hope it will be helpful.

提交回复
热议问题