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
});