【发布时间】:2012-12-19 02:20:13
【问题描述】:
我有一个页面上的模态框正在 iframe 中打开动态内容。
<a href="popup.php?id=52" rel="modal">Link 1</a>(固定ID)
<a href="popup.php?id=53" rel="modal">Link 1</a>(固定ID)
...
但无论我做什么,我都无法阻止 iframe 内容缓存在 IE10 中(似乎其他浏览器都不错)。
- 我用html5所以meta标签无能为力。
- Cache.manifest 让我的页面一团糟(或者如果只放 NETWORK:* - 无效)。
- PHP 标头
header("Cache-Control: no-cache"); header("Expires: -1");也对 IE10 无效。 - 在 Web 中找到的 JS/JQuery 解决方案我无法正确应用。
除了为 href 添加另一个动态 GET 参数之外的任何解决方案?
【问题讨论】:
标签: caching iframe internet-explorer-10 html5-appcache