标签:
iframe自适应高度
$("#mainFrame").load(function(){
var height = $(document.getElementById(‘mainFrame‘).contentWindow.document).height() + ‘px‘;
$("#mainFrame").css("height", height);
$(document.getElementById(‘mainFrame‘).contentWindow.document).click(function(){
var height = $(this).height() + ‘px‘;
$("#mainFrame").css("height", height);
});
});
子页面获取父页面内容
window.parent.方法名; window.parent.变量名;
父页面获取子页面内容
window.document.getElementById("mainFrame").contentWindow.方法名;
window.document.getElementById("mainFrame").contentWindow.变量名;
标签:
原文地址:http://my.oschina.net/chenhao901007/blog/374908