你看,我有以下情况,我有一个iframe,显示在苹果设备上没有问题,无论模型,在桌面/ PC它显示没有问题,在Android设备上使用除Chrome之外的任何浏览器是显示正确,现在,使用Android设备和Chrome浏览器有时会显示IFrame而其他时间没有,我的IFrame如下:
<iframe id="lgnIfra" width="100%" marginheight="0" marginwidth="0" onLoad="resize()" scrolling="no" frameborder="0" src="<%=path%>" align="bottom" iframe.src="javascript:parent.getFrameHTML()"></iframe>
有没有办法在Android设备上加载IFrame而没有任何问题,并使用chrome作为浏览器?
更新1
我在控制台中出现下一个错误:
Uncaught TypeError: Cannot read property 'scrollHeight' of null
这是我的文件.js
中的一行iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
任何解决方案?