我正在忙着编写一个完全使用javascript刷新IFrame的应用程序,现在我的问题是我在IE 6中遇到以下错误
'document.getElementById(...).contentDocument.location' is null or not an object
我的代码看起来像这样
document.getElementById('mobi').contentDocument.location.reload(true);
和mobi存在。 mobi是iframe的id
答案 0 :(得分:3)
对旧IE使用contentWindow:)
的document.getElementById( '摩比')contentWindow.location.reload(真);
(了解更多关于contentWindow)