我正在尝试从 <c:if test="${ not empty listRule1}">
向其父级(跨域)发送<div>
高度:
子页面代码(iframe):
<iframe>
父页面:
<script>
var h = $('#frame').height();
parent.postMessage(h, '*');
<script>
我在<script>
window.addEventListener("message",
function (e) {
alert(e.data);
},
false
);
</script>
和chrome
进行了测试但没有成功!
这是我的测试页面: http://pulse.org.il/test.html