Scrolling down in Chrome dev tools when paused in debugger

后端 未结 3 1229
挽巷
挽巷 2021-01-31 07:30

Is there any way to scroll down on the page while Chrome is paused in debugger mode without unpausing?

3条回答
  •  猫巷女王i
    2021-01-31 07:58

    Taken from here.

    An easy workaround for the scrolling lock-up is to just jump to the console, and:

    window.scrollTo(0, 800). (Replace 800 as needed)

提交回复
热议问题