Iframe 自适应高度(js)

来源:互联网 发布:可以追里番的软件 编辑:程序博客网 时间:2024/06/05 08:30
  • 兼容的Iframe自适应高度
    function setIframeHeight(id){          try{            var iframe = document.getElementById(id);            if(iframe.attachEvent){              iframe.attachEvent("onload", function(){                iframe.height =  iframe.contentWindow.document.documentElement.scrollHeight;              });              return;            }else{              iframe.onload = function(){                iframe.height = iframe.contentDocument.body.scrollHeight;              };              return;                            }              }catch(e){            throw new Error('setIframeHeight Error');          }        }
0 0
原创粉丝点击