• html iframe


    父页面

    <html>
    <head>
    <script type="text/javascript">
        // 父页面变量
        var parentCount = '0';
    
        // 页面(含子页面)加载完成后执行方法
        function onload() {
            // 父页面获取iframe
            var iframe = window.document.getElementsByTagName('iframe')[0];
            alert(iframe.width);
    
            // 获取子页面中的js变量
            alert(iframe.contentWindow.childCount);
    
            // 获取子页面中的DOM对象
            alert(iframe.contentWindow.document.getElementById('child').value);
        }
    </script>
    </head>
    <body onload='onload();'>
        <iframe src='http://localhost:8080/test/iframeTest.html' width='800px' height='600px'></iframe>
    
        <input type="text" id="parent" value="parent" />
    </body>
    </html>
    <!-- 
    跨页面操作涉及域的概念,放在服务器上面才能够正常使用。
    如果在本地直接用浏览器打开(地址栏是file:///...)将会报错。
    错误信息如下:
    Uncaught SecurityError: Blocked a frame with origin "null" from accessing a frame with origin "null". Protocols, domains, and ports must match.
    
    执行顺序:
    首先加载父页面,然后加载子页面,故在子页面中能够获取到父页面的变量parentCount=0和父页面的parent元素。
    在父页面中获取子页面变量及对象时需要等子页面加载完成。
    -->

     子页面

    <html>
    <head>
    <script type="text/javascript">
        // 子页面变量
        var childCount = '1';
    
        // 子页面获取iframe
        var iframe = window.parent.document.getElementsByTagName("iframe")[0];
        alert(iframe.height);
    
        // 获取父页面中的js变量 
        alert(window.parent.parentCount);
    
        // 获取父页面中的DOM对象 
        alert(window.parent.document.getElementById("parent").value);
    </script>
    </head>
    <body>
        <input type="text" id="child" value="child" />
    </body>
    </html>
  • 相关阅读:
    10.22(day11) Object类 异常
    10.19(day10)
    10.18(day9)内部类 抽象类 接口
    10.17(day8) Static关键字 包的使用 访问修饰符的权限 设计模式
    paho-mqtt error1: incorrect protocol version解决方法
    Python进阶-pickle/eval/exec
    关联分析算法Apriori和FP-Growth
    LOF聚类分析
    Python进阶-迭代器和生成器
    Linux常见坑
  • 原文地址:https://www.cnblogs.com/pumushan/p/5799336.html
Copyright © 2020-2023  润新知