• html5跨文档消息传递


    基于js的同源策略使文档不能跨域访问,为此html5提供了跨文档消息传递功能,下贴出示例...

    http://localhost:4933站页面代码

    <!DOCTYPE html>

    <head>   

    <title></title>
    <script type="text/javascript">
            window.addEventListener("message", function(ev) {     

            ev.origin == "http://www.woyun.com" && alert(ev.origin + "说:" + ev.data);       

        }, false);


            function say() {    

         document.getElementById("myifr").contentWindow.postMessage("Hello", "http://www.woyun.com");   

            }   

    </script>
    </head>

    <body>   

    <iframe src="http://www.woyun.com/mytest.htm" onload="say()" id="myifr"></iframe>

    </body>

    </html>

    http://www.woyun.com/站页面代码

    <!DOCTYPE html>

    <head>   

    <title></title>
    <script>       

      window.addEventListener("message", function(ev) {     

            if (ev.origin == "http://localhost:4933") {           

            document.body.innerHTML = ev.origin + "说:" + ev.data;     

                 ev.source.postMessage(ev.data.split("").reverse().join(""), ev.origin);     

            }       

      }, false);
    </script>
    </head>

    <body>

    </body>

    </html>

    运行效果截图...

    使用跨文档消息传递首先监控窗口message事件

    事件对象包括的属性

    data:传递的内容,可以是字符串或对象

    origin:发送消息的窗口的协议、域名和端口号

    source:发送消息的窗口对象

    使用窗口对象的postMessage发送消息,postMessage接受俩个参数,传递的内容和接受页面的origin...

  • 相关阅读:
    gcc/g++动态链接库和静态库的链接顺序
    linux文件描述符--转载
    mysql之test表
    linux之eventfd()
    spring data jpa实现多条件查询(分页和不分页)
    List的remove方法里的坑
    启动Spring boot报错:nested exception is java.sql.SQLException: Field 'id' doesn't have a default value
    CentOS下yum安装jdk
    CentOS下yum安装mysql
    Redis有序Set、无序Set的使用经历
  • 原文地址:https://www.cnblogs.com/ygm125/p/2082534.html
Copyright © 2020-2023  润新知