方法一: 缓存
//为解决缓存问题,先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