网站切换背景时,浏览器图片缓存问题

方法一: 缓存

 //为解决缓存问题,先Remove而后而后添加时间戳
        //$("#Loginbg").remove();
        //$("#formLogin").before('<img class="backgroundImg" id="Loginbg" src="images/Index/bg_index' + type + '.png?r=<%=System.currentTimeMillis()%>"/>');orm

方法二:
        //为解决缓存问题,必须添加时间戳
        $("#Loginbg").attr("src", "images/Index/bg_index" + type + ".png?r=" + new Date().toString());rem

相关文章
相关标签/搜索