37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
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>Document</title>
|
|
<script src="./js/jquery.min.js"></script>
|
|
<script>
|
|
$(function () {
|
|
window.addEventListener("message", (e) => {
|
|
console.log(e.data);
|
|
// console.log(parent.$(window.parent.document).find("#regis"));
|
|
});
|
|
});
|
|
// window.onload = function () {
|
|
// var iframe = document.getElementById("myiframe");
|
|
// var iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
|
|
|
|
// // 获取子页面的元素
|
|
// var elementInChildPage = iframeDoc.getElementById(
|
|
// "element_id_in_child"
|
|
// );
|
|
|
|
// // 对获取到的元素进行操作
|
|
// if (elementInChildPage) {
|
|
// // 例如,改变背景颜色
|
|
// elementInChildPage.style.backgroundColor = "red";
|
|
// }
|
|
// };
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<iframe src="demo1.html" frameborder="0"></iframe>
|
|
</body>
|
|
</html>
|