Home >Backend Development >PHP Tutorial >请教怎么更新IE下iframe中的图片缓存

请教怎么更新IE下iframe中的图片缓存

WBOY
WBOYOriginal
2016-06-13 09:58:41909browse

请问如何更新IE下iframe中的图片缓存
我在iframe中显示了一张图片,然后上传图片覆盖了那张图片(原先的图片已经被覆盖了,两张图片的名字相同),但为什么提交后的页面显示的还是原先的图片。求解决方法,十分感激

------解决方案--------------------
第一种 禁止缓存
 

第二种 js 控制 重新更新
请教怎么更新IE下iframe中的图片缓存
<script><br />//这样可以及时地更新。<br />document.all( "ImgSrc ").src= "csdn.gif?id= "+(new Date()).toString();<br /></script> 

自己测试一下吧 ,文件头输出应该可以js 控制应该也没问题,不过没测试过。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn