iframe子页面之间值传递

Posted hpwd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe子页面之间值传递相关的知识,希望对你有一定的参考价值。

<div style="width:100%;height: 100%;">
        <div style="width:74%;height: 70%;float: left"><iframe id ="a" name="priceManage" th:src="@{priceManage}" style="width:100%;height: 100%;"  frameborder="0"></iframe></div>
        <div style="float: right;width:26%;height: 70%;"><iframe id ="notify" name="notify" style="width:100%;height: 100%;"  frameborder="0"></iframe></div>
        <div id="bottom" style="float: bottom;width:100%;height: 30%;"><iframe id ="allOrder" name="allOrder" th:src="@{foreignMainOrderList}" style="width:100%;height: 100%;" frameborder="0"></iframe></div>
    </div>
// 获取priceManage,parent是index页面的window对象。"priceManage"表示<iframe>标签的name属性
 var fra = parent.frames["priceManage"];// 此时priceManage就是priceManage页面的window对象 
alert("aa"+fra.isPauseOrder);

以上是关于iframe子页面之间值传递的主要内容,如果未能解决你的问题,请参考以下文章

iframe父页面与子页面之间的传值问题

iframe页面父页面与子页面之间相互进行数据传送及方法调用

iframe 父页面与子页面之间的方法的相互调用

iframe页面之间元素获取与方法调用

js传值到iframe中

在iframe中弹出的模态窗口 怎么传值给父页面的文本域