在自述文件中,它为您提供了基本代码
// run this in multiple tabs!
var intercom = Intercom.getInstance();
intercom.on('notice', function(data) {
console.log(data.message);
});
intercom.emit('notice', {message: 'Hello, all windows!'});
将发出代码放在带有按钮的页面上,将 on 代码放在您希望出现警报的页面上[当然将控制台行更改为警报。]
因此,使警报发生将是:
第 1 页 [带有警报的页面]:
var intercom = Intercom.getInstance();
intercom.on('notice', function(data) {
alert(data.message);
});
第 2 页 [带按钮的页面]:
function broadcast () {
var intercom = Intercom.getInstance();
intercom.emit('notice', {message: 'Hello, all windows!'});
}
document.getElementById("myButtonId").addEventListener("click", broadcast , false);