主页面
- html>
- <html>
-
- <head>
- <meta charset="utf-8" />
- <title>title>
- head>
-
- <body>
- <iframe name="myIframe" id="iframe" class="" src="flexible.html" width="500px" height="500px">
- iframe>
- body>
- <script type="text/javascript" charset="utf-8">
- function fullscreen() {
- alert(1111);
- }
- script>
-
- html>
子页面 flexible.html
- html>
- <html>
-
- <head>
- <meta charset="utf-8" />
- <title>title>
- head>
-
- <body>
- 我是子页面
- body>
- <script type="text/javascript" charset="utf-8">
- // window.parent.fullScreens()
- function showalert() {
- alert(222);
- }
- script>
-
- html>
myIframe.window.showalert();
window.parent.fullScreens();
window.parent.document.getElementById("元素id");
window.frames["iframe_ID"].document.getElementById("元素id");
使用 post message方法
子页面
window.parent.postMessage("hello", "http://127.0.0.1:8089");
- window.addEventListener("message", function(event) {
- alert(123);
- });