|
|
6 天之前 | |
|---|---|---|
| .. | ||
| test | 6 天之前 | |
| .npmignore | 6 天之前 | |
| .travis.yml | 6 天之前 | |
| History.md | 6 天之前 | |
| LICENSE | 6 天之前 | |
| Makefile | 6 天之前 | |
| README.md | 6 天之前 | |
| index.js | 6 天之前 | |
| package.json | 6 天之前 | |
CustomEvent constructorhttps://developer.mozilla.org/en-US/docs/Web/API/CustomEvent.CustomEvent
$ npm install custom-event
var CustomEvent = require('custom-event');
// add an appropriate event listener
target.addEventListener('cat', function(e) { process(e.detail) });
// create and dispatch the event
var event = new CustomEvent('cat', {
detail: {
hazcheeseburger: true
}
});
target.dispatchEvent(event);