Clone a DOM event object to re-dispatch
问题 Some browsers won't allow you to re-dispatch an event that has already been dispatched, but allow you to create new event objects based on values that can be obtained from the existing event object. Is there a generic and reusable solution that will work with any event type, or failing that, a way to do this for a specific event type (in my case I'm currently concerned with the mousewheel event)? 回答1: It seems there is now an even better solution, since initMouseEvent and the like are