js控制iframe高度

1 <iframe src="test.html" id="iframeId" scrolling="no"></iframe>

 

 1 function setIframeHeight() {
 2   var iframe = document.querySelector("iframe");
 3   var ifr_document = iframe.contentWindow.document;
 4   var iH = ifr_document.body.scrollHeight;
 5   iframe.height = iH;
 6 }
 7 
 8 window.onload = function () {
 9   setIframeHeight();
10 }

 

posted @ 2020-04-08 12:42  股股清流  阅读(945)  评论(0编辑  收藏  举报