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.
有没有办法在下一页加载之前缓存文件?
我看到expiresand max-age,但它们需要一个时间增量,我不知道。
expires
max-age
一种选择是使用 JavaScript 为所有外部文件添加时间戳。
例如,如果您需要加载http://path/myIcon.png:
http://path/myIcon.png
var path="http://path/myIcon.png"+"?_ts="+new Date().toString();