Posted in Javascript onApril 22, 2014
iframe高度设置为子页面高度
//需要使用Jquery $(document).ready(function () { parent.document.getElementById("ifPage").style.height = document.body.scrollHeight + "px"; });
iframe高度自适应于父页面
//需要使用Jquery $(window).resize(function () { var webheight = document.body.clientHeight - X; //X是需要减去的高度量,例如顶部导航的高度 $("#ifPage").attr("style", "height:" + webheight + "px;"); }); $(window).load(function () { var webheight = document.body.clientHeight - 105; $("#ifPage").attr("style", "height:" + webheight + "px;"); });
父子页面间传递元素
父页面获取子页面中的数据,JS代码:
//根据iframe的id获取对象 var i1 = window.frames['iframeId']; //var iframe =window.frames[0];也可以 //获取iframe中的元素值 var val=i1.document.getElementById("t1").value
子页面获取父页面中的数据,JS代码:
var val = parent.document.getElementById("txt1");
子页面与子页面间的传递,JS代码:
var i1 = parent.window.frames['iframeId']; var val = i1.document.getElementById("text1").value;
刷新父页面
function parentReload() { window.parent.location.reload();}
重新加载子页面
iframe.Attributes[ "Src"] = "ItemTQEditorPage.aspx";
iframe实用操作锦集
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@