我有一个头像加载动画,它在加载时被交换为图像:
var avvy = $.trim("/"+this.mycoach.avatar);
this.tmpImg = new Image() ;
this.tmpImg.src = avvy;
$(this.tmpImg).load( function() {
$(contentDiv).find(".photo").css('background-image',"url("+avvy+")");
});
}
它有效 - 加载图像后,背景被交换为头像。但是浏览器随后会向同一图像发送一个新请求....
图片网址如下:
/avatar_fb.php?fbid=*****&width=80&height=80&token=3547***52
我可以强制浏览器缓存该图像吗?或服务器端代码?