Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在脚本中设置了一些断点时,谷歌浏览器删除了滚动网页的能力,在屏幕顶部说Paused in debugger。有没有办法禁用它,以便我可以查看页面各个部分的元素,同时也可以查看调试器中的脚本?
Paused in debugger
取自这里。
滚动锁定的一个简单解决方法是跳转到控制台,并且:
window.scrollTo(0, 800). (根据需要更换 800)
window.scrollTo(0, 800)
您可以单击“元素”选项卡,然后将 HTML 悬停在您感兴趣的元素上,然后右键单击“滚动到视图”。不是最自然和最快速的,但它确实有效......