Element.prototype.on = Element.prototype.addEventListener;
NodeList.prototype.on =
function
(event, fn) {、
[][
'forEach'
].call(
this
,
(el) {
el.on(event, fn);
});
return
;
};