我正在使用Chrome扩展程序传递隔离的上下文消息。这并不重要,但重要的是它不适用于基本的$(document).trigger()
和$(document).on()
(已尝试在双方都包含jQuery,但它不起作用)。
所以我们坚持使用标准JS。现在在他们的例子中,他们说要听一个自定义事件:
document.addEventListener('POLL',function(event){
chrome.extension.sendRequest({poll:true, at:(new Date().getTime())});
});
根据需要解雇该事件:
var ce = document.createEvent('Event');
ce.initEvent('POLL',true,true);
document.dispatchEvent(ce);
delete ce;
如您所见,POLL
是我的自定义事件。
现在,我如何将一些数据添加到它?
我已经用Google搜索了整个互联网,发现了zilch,一定是在寻找错误的关键字lol。