我需要一个解决方案来刷新适用于不同浏览器的 iframe。
你能确认一下,我在互联网上找到的代码是正确的还是给我正确的 javascript?
即 7
window.document.getElementById('iframeId').contentWindow.location.reload(true);
即 8
window.document.getElementById('iframeId').contentWindow.location.reload(true);
即 9
window.document.getElementById('iframeId').contentWindow.location.reload(true);
火狐 12-17
window.document.getElementById('iframeId').src = window.document.getElementById('iframeId').src;
铬 < 19
document.getElementById('iframeId').contentWindow.location.reload();
铬现在
???
Safari 和 Opera 会很好,但以上内容很重要。iframe 可能位于不同的域中。
提前谢谢了!