父頁面代碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>父親-頁面</h1>
<iframe id="myIframe" src="./son.html" width="600" height="400"></iframe>
<script>
window.onload = function(){
window.addEventListener('message',function(e){
console.log(e.data)
})
}
</script>
</body>
</html>
子頁面代碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h2>我是兒子頁面--kkk</h2>
<button onclick="triggerParentEvent()">方法1:調用父親頁面</button>
<script>
function triggerParentEvent() {
window.parent.postMessage("I am xiaojin", "*");
}
</script>
</body>
</html>