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子页面之间值传递的主要内容,如果未能解决你的问题,请参考以下文章