我有一个 iframe,我正在尝试根据它的实际内容调整它的大小(就像我没有得到任何滚动一样)。我尝试了以下方法:
警报(document.getElementById(iframe).contentWindow.document.body.height);警报(document.getElementById(iframe).contentWindow.document.body.scrollHeight);警报(document.getElementById(iframe).contentWindow.document.body.offsetHeight);
这些都不起作用。iframe 包含 iframe 的 id。最后两行在 Chrome 中有效。
任何帮助将非常感激。