1秒登錄
方式1:
0 注意:下面的代碼是放在和iframe同一個頁面中調用
1 //$(
"#iframeId"
).load(
function
() {
2
var
mainheight = $(
this
).contents().find(
"body"
).height() + 30;
3
$(
).height(mainheight);
4 });
方式2:
0 注意:下面的代碼是放在iframe引用的子頁面中調用
1 //$(window.parent.document).find(
main = $(window.parent.document).find(
);
thisheight = $(document).height() + 30;
4
main.height(thisheight);
5 });
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。