iframe自适应高度

$(document).ready(function () {

                $("#frmDraftList").load(function () {

                    $(this).height(0); //用于每次刷新时控制IFRAME高度初始化 

                    var height = $(this).contents().height() + 10;

                    $(this).height(height < 480 ? 480 : height);

                });

            });

 

你可能感兴趣的:(iframe)