window.postMessagechrome
一、浏览器兼容状况:IE8+、chrome、firefox等较新浏览器都至此。浏览器
二、使用方法:post
a、otherWindow.postMessage( message, targetOrigin);firefox
otherWindow iframe属性中的对象或者window.open打开的窗口对象
message 要发送的信息事件
targetOrigin 限定消息的发送范围,若是不限制,使用“*”get
b、监听message事件的触发iframe
$(window).on("message", function(event){io
alert(event.data);event
});