Iframe自适应高度

@{
    ViewBag.Title = "首页";
    Layout = "~/Views/Shared/_Layout_0.cshtml";
}
<script type="text/javascript" language="javascript">

    function iFrameHeight() {
        
        var ifm = document.getElementById("iframepage");
        
        var subWeb = document.frames ? document.frames["iframepage"].document :ifm.contentDocument;
        
        if (ifm != null && subWeb != null) {
            
            ifm.height = subWeb.body.scrollHeight;

        }

    }

</script>

 

<iframe src="/Index/Index" id="iframepage" name="iframepage" onload="iFrameHeight()" style="100%" border="0" vspace="0" hspace="0" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="no"></iframe>
原文地址:https://www.cnblogs.com/Zpyboke/p/5519971.html