<!DOCTYPE html> <htmllang="en"> <head> <metacharset="UTF-8"> <metahttp-equiv="X-UA-Compatible"content="IE=edge"> <metaname="viewport"content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h4>收到的消息是</h4> <ulid="ul"> </ul> <inputtype="text"id="text"> <buttonid="btn">给父级发送消息</button> </body> </html> <script> window.addEventListener("message",function({data}){ var oUl = document.querySelector("#ul"); var oLi = document.createElement("li"); var oText = document.createTextNode(data); oLi.appendChild(oText); oUl.appendChild(oLi);
})
var oBtn = document.querySelector("#btn"); var oText = document.querySelector("#text"); oBtn.onclick=function(){ var value = oText.value; if(value){ parent.postMessage(value); } } </script>