标签: javascript html browser-cache cache-control
有没有办法缓存文件,直到下一页加载?
我看到expires和max-age,但它们需要时间增量,我不知道。
expires
max-age
答案 0 :(得分:1)
一种选择是使用JavaScript为所有外部文件添加时间戳。
例如,如果您需要加载http://path/myIcon.png:
http://path/myIcon.png
var path="http://path/myIcon.png"+"?_ts="+new Date().toString();