方法一:
//为解决缓存问题,先Remove然后然后添加时间戳
//$("#Loginbg").remove();
//$("#formLogin").before('<img class="backgroundImg" id="Loginbg" src="images/Index/bg_index' + type + '.png?r=<%=System.currentTimeMillis()%>"/>');
方法二:
//为解决缓存问题,必须添加时间戳
$("#Loginbg").attr("src", "images/Index/bg_index" + type + ".png?r=" + new Date().toString());