查看Chrome开发工具中加载的外部图片?

时间:2015-10-08 09:16:04

标签: google-chrome-devtools

我的CSS中有一些外部引用的图像:

.something {
  background: url('www.example.com/image');
}

如何在Chrome开发工具中查看正在加载的图片?

1 个答案:

答案 0 :(得分:1)

我看到的最佳选择是:

  1. 打开Devtools
  2. 网络面板
  3. 选择 Img
  4. 按域排序(如果不存在,请右键单击任何列标题添加列)

    或者更好的是,使用过滤器框排除 localhost(或其他):-domain:localhost

  5. 见捕获:

    enter image description here