2021
07-01
07-01
JavaScript 如何实现同源通信
目录一、BroadcastChannelAPI简介二、BroadcastChannelAPI应用场景2.1实现同源页面间数据同步2.2在其它Tab页面中监测用户操作三、BroadcastChannelAPIvspostMessageAPI四、总结五、参考资源一、BroadcastChannelAPI简介BroadcastChannelAPI可以实现同源下浏览器不同窗口、Tab页或者iframe下的浏览器上下文之间的简单通讯。通过创建一个监听某个频道下的BroadcastChannel对象,你可以接收发送给该频道的...
继续阅读 >