localStorage数据跨域共享

postMessage

postMessage是Html5引入的新API,可以安全地实现跨源通信。(跨页面/窗口/源等)

1
otherWindow.postMessage(message, targetOrigin);
阅读更多