iframe 父页面传值给子页面

父页面

<body> 
    父级:A页面<br/><br/>
    <button id="children_button">传值给子元素 </button>
    <iframe src="http://www.genetek.cc/iframe/b.html" width="500px" height="200px" id="iframe"></iframe> 
    <script> 
        let iframe = document.getElementById('iframe');
        document.getElementById("children_button").onclick = function(){ 
	        var param = {'age':'10'};
	        iframe.contentWindow.postMessage(param,'*');
    	}         
    </script> 
</body> 

子页面

<body> 
    子级:B页面<br/>
    <button id="b_button">B页面发送A页面数据</button><br/> 
    <script> 
      window.addEventListener('message', function(e) {
      		document.getElementById("b_button").innerHTML=JSON.stringify(e.data);
      		alert(JSON.stringify(e.data));
      })
    </script>
</body>

你可能感兴趣的:(JS)