这是我使用的代码
function setHeight(obj) {
var win = obj;
if (document.getElementById) {
if (win && !window.opera) {
if (win.contentDocument && win.contentDocument.body.offsetHeight)
win.height = win.contentDocument.body.offsetHeight;
else if (win.Document && win.Document.body.scrollHeight)
win.height = win.Document.body.scrollHeight;
}
}
}
在IE下显示正常,可是其他的如Chrome FireFox就不行
恳请帮助
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
`else if (win.Document && win.Document.body.scrollHeight)
win.height = win.Document.body.scrollHeight;
}`
改成
`else if (document.body&&document.body.scrollHeight)
win.height = document.body.scrollHeight;
}`