我有这个功能已经很长时间了,它点击了我的iframe更改高度,但自上次更新chrome以来,它停止了对chrome的工作。我得到的值是0,而在资源管理器或其他平台上,它的效果很好。任何想法如何让它再次有效?
function calcHeight() {
var the_height = document.getElementById('resize').contentWindow.document.body.scrollHeight;
window.alert(the_height);
document.getElementById('resize').height= the_height;
}
答案 0 :(得分:1)
您可以尝试更改文档的引用方式:
{{1}}