1>父窗口获取子窗口
js方法
document.getElementById('if1').contentWindow.document;
window.frames["if1"].document.body;
jQuery方法
$(this).contents();
2>父窗口获取子窗口高度
js方法
document.getElementById('if1').contentWindow.document.body.scrollHeight;
window.frames["if1"].document.body.scrollHeight;
jQuery方法
$(this).contents()[0].body.scrollHeight;
3>子窗口调用父窗口方法
js方法
window.parent.fun();
4>iframe自适应高度
在iframe的load事件中重新设置iframe的高度。
1 2 3 4 5 6 7 | $( function () { $( "iframe" ).each( function () { $( this ).load( function () { $( this ).height($( this ).contents()[0].body.scrollHeight); }); }); }); |
程序员的基础教程:菜鸟程序员
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步