2021-12-10 15:50:32 +08:00

20 lines
415 B
HTML

<!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>页面二</title>
</head>
<body>
<p>这是页面二</p>
<script>
window.addEventListener("message",function(e){
console.log(e.data);
})
</script>
</body>
</html>