在我的网站上,一个 AJAX 脚本会发出很多请求。我希望网络日志自动向下滚动到最新的请求,而不需要我这样做。我该如何在Chrome DevTools上做到这一点呢?
nnvyjq4y1#
有一个有点麻烦的解决方案:1.打开devtools-on-devtools。首先打开devtools,然后将菜单中的Dock侧切换为分离(浮动)窗口x1c 0d1x在现在分离的devtools中按Ctrl+Shift+i或在MacOS上按++i,这将在新窗口中打开devtools-on-devtools1.在devtools-on-devtools控制台中运行以下代码:
devtools-on-devtools
setInterval(() => { let scr = document.querySelector("div.network-waterfall-v-scroll") scr.scrollTop = scr.scrollHeight }, 3000);
1条答案
按热度按时间nnvyjq4y1#
有一个有点麻烦的解决方案:
1.打开
devtools-on-devtools
。首先打开devtools,然后将菜单中的Dock侧切换为分离(浮动)窗口x1c 0d1x
在现在分离的devtools中按Ctrl+Shift+i或在MacOS上按++i,这将在新窗口中打开devtools-on-devtools
1.在
devtools-on-devtools
控制台中运行以下代码: