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.
每次我想测试我修改的网页时,假设我添加或更改了图像的来源,浏览器第一次从该页面加载该图像,然后当我不断刷新它时,图像就静止不动就像我以前去过那里(它不会再次开始下载它)。
所以(作为开发人员的调试模式),我希望浏览器重新下载所有相关资源,这样每次我想测试我添加或修改,例如不同的图像。
我该怎么做?有那个名字吗?
我感谢你的帮助!
按 Ctrl+F5 重新加载,它应该清除缓存。但是请注意,由脚本动态加载的图像可能不会从缓存中清除,但在这种情况下,您可以添加?x="+new Date().getTime()以破坏缓存以进行测试。
?x="+new Date().getTime()
在 MAC 上:Command+Shift+R
Firefox 快捷方式链接