本文實例講述了jQuery簡單實作iframe的高度根據頁面內容自適應的方法。分享給大家參考,具體如下:
方式1:
//注意:下面的代码是放在和iframe同一个页面中调用 $("#iframeId").load(function () { var mainheight = $(this).contents().find("body").height() + 30; $(this).height(mainheight); });
方式2:
//注意:下面的代码是放在iframe引用的子页面中调用 $(window.parent.document).find("#iframeId").load(function () { var main = $(window.parent.document).find("#iframeId"); var thisheight = $(document).height() + 30; main.height(thisheight); });
希望本文所述對大家jQuery程式設計有所幫助。
更多jQuery簡單實現iframe的高度根據頁面內容自適應的方法相關文章請關注PHP中文網!