当前位置:主页 > 网页前端 > jquery >

jQuery解决iframe高度自适应代码

时间:2021-08-26 08:13:48 | 栏目:jquery | 点击:

复制代码 代码如下:

<script type="text/javascript">
<!--
$(
    function()
    {                    
     //iframe高度随内容自动调整
        $('.main').load(
         function()
            {
                $(this).height($(this).contents().find("body").attr('scrollHeight'));
            }
        );
    }
);     
// -->
</script>

您可能感兴趣的文章:

相关文章