I'm familiar with namespaces in jQuery's event handlers. I can add an event handler in a specific namespace:
$('#id').on('click.namespace', _handlerFunction);
And then I can remove all event handlers in that namespace:
$('#id').off('.namespace');
The advantage here is that I can remove only the events in this namespace, not any user-added/additional events that should be maintained.
Does anyone have any tips on how I can not use jQuery, but achieve a similar result?
question from:
https://stackoverflow.com/questions/21817397/event-handler-namespace-in-vanilla-javascript 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…