复制代码 代码如下:
function SetCwinHeight(obj) {
var cwin = obj;
if (document.getElementById) {
if (cwin && !window.opera) {
if (cwin.contentdocument && cwin.contentdocument.body.offsetHeight)
cwin.height = cwin.contentdocument.body.offsetHeight + 30;
else if (cwin.document && cwin.document.body.scrollHeight)
cwin.height = cwin.document.body.scrollHeight + 30;
}
}
}
复制代码 代码如下:



