欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iframe 自适应宽度和高度

程序员文章站 2022-07-14 21:53:47
...
 		 window.onload = function () {
		 setIframe();
		 };
function setIframe() {
		  var ifm= document.getElementById("external-frame"); 
		    ifm.height=document.documentElement.clientHeight;
		    ifm.width=document.documentElement.clientWidth;
		 };
<iframe src="jasper.html" frameborder="0" scrolling="no" id="external-frame" onload="setIframe(this)"></iframe>