如何强制iframe重新加载而不从缓存加载?
答案 0 :(得分:4)
要强制它每次重新加载 ,请在其网址中添加随机GET参数:
iframe.src = "testpage.html?reload="+Math.random();#
或雅各布建议,当前时间戳(消除重复的可能性):
iframe.src = "testpage.html?reload="+(new Date()).getTime();
答案 1 :(得分:0)
someIframe.src += "#forceReload";
应该有效。或者:
someIframe.src += "?fakeQuery";