How to trigger an on scroll event without scrolling

前端 未结 8 1228
梦毁少年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:09

    window.scrollTo(window.scrollX, window.scrollY); is not working for me in Firefox. Nothing happens, and it seems to be because no scrolling actually needs to be performed to go to the place where you allready are.

    BUT window.scrollTo(window.scrollX, window.scrollY-1); is working. By this command the window.scroll event function is fired.

    (Trying to cheat by for instance: window.scrollTo(window.scrollX, window.scrollY-0) is not working either.)

提交回复
热议问题