父亲监听到子传递的值
父亲
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<iframe src="http://192.168.200.11:9528" frameborder="0" style="width:100%;height:800px;"></iframe>
<script>
window.addEventListener('message', function (e) {
console.log(e.data)
}, false)
</script>
</body>
</html>
closeClick(){
window.parent.postMessage('true','*');
},