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.
当 Chrome 在调试器模式下暂停而不取消暂停时,有什么方法可以在页面上向下滚动?
如果您的工具已停靠,您可以取消停靠以查看更多信息。
另一种方法:
display:none
取自这里。
滚动锁定的一个简单解决方法是跳转到控制台,并且:
window.scrollTo(0, 800). (根据需要更换 800)
window.scrollTo(0, 800)
要启用滚动,请在控制台中输入:document.body.style.overflow = 'auto'