TabMessage
TabMessage copied to clipboard
浏览器tab之间通信
简易的浏览器选项卡间通信库
使用方法
初始化
Notify.init("../core/notify.html", null, "Duplex");
接收
Notify.receive(function (obj) {
console.log(obj);
});
发送
//send内容随意,这里只做演示
Notify.send({ from: 'which tab', message: 'your message'});
查看示例
在线地址
本地查看
git clone https://github.com/doubi-NO1/TabMessage.git
cd TabMessage
node server.js
浏览器打开两个选项卡,分别输入http://localhost:9090/test/tab1.html和http://localhost:9090/test/tab2.html
LICENSE
MIT