解决方法
奇怪的行为,影响每个浏览器..
我通常用这个脚本手动刷新它(它使用jQuery)
我通常用这个脚本手动刷新它(它使用jQuery)
<img id="gif_animata" src="picturePath.gif"> <script type="text/javascript"> var gifSource = $('#gif_animata').attr('src'); //get the source in the var $('#gif_animata').attr('src',""); //erase the source $('#gif_animata').attr('src',gifSource+"?"+new Date().getTime()); //add the date to the source of the image... :-) </script>
这将刷新添加当前日期的图像的src,因此浏览器将重新加载它,认为这是一个新的图像.
否则以PHP的方式(我更喜欢这个):
<img src="picturePath.gif?<?PHP echo date("Ymdgis");?>" /> //for the browser it will seems that's a new picture! <img src="picturePath.gif?2012092011207">