首页 > 代码库 > iframe高度从内向外撑起

iframe高度从内向外撑起

index.html:

?

1
2
<div style="height: 200px;"></div>
<iframe id="gys" src="http://www.mamicode.com/con.html" width="100%"></iframe>

 

con.html

?

1
2
3
<body onload="parent.window.document.all.gys.height=document.body.scrollHeight">
        <div style="height: 1800px; width: 500px; margin: 0 auto; "></div>
    </body>


iframe高度从内向外撑起