Why is the target property of the mousewheel event different from that of other (click, mousedown, touchstart) events?
问题 The mousewheel event's target property provides the DOM element that the mouse is currently hovering over as the mousewheel (or gesture-capable touchpad) is being operated. When I do this (at least in Safari 6, I will test other browsers later) I will get the text node itself as target . This never happens with other events which always produce a non text node even if I perform the action directly over text. Needless to say it makes the code more complex than otherwise. Is there a reason for