当我尝试访问 iframe 时,我收到了这个错误,我不确定我做错了什么。有人可以帮我解决这个问题吗?
var ifrm = document.getElementById('iframe'),
ifrm = (ifrm.contentWindow) ? ifrm.contentWindow :
(ifrm.contentDocument.document)
? ifrm.contentDocument.document :
ifrm.contentDocument;
ifrm.open();
ifrm.write("Hello World!");
ifrm.close();
这些是我收到的错误:
未捕获的类型错误:无法读取未定义的属性“文档”
未捕获的类型错误:无法读取未定义的属性“readyState”