You need to test for the type of event, like this:
$("#myList").delegate("li", "hover", function ( event ) {
if (event.type == 'mouseover') {
showButtons();
} else {
hideButtons();
}
});
Since there's only one handler to run for both events, we are checking to see which one fired, and running the appropriate code.
As opposed to binding hover
directly to the element where it is able to accept two handlers for the two event types.
EDIT: Note that as of jQuery 1.4.3
, the type of event that is reported when using 'hover'
with .delegate()
or .live()
is no longer mouseover/mouseout
(as it ought to be). Now it will be mouseenter/mouseleave
, which just seems silly since they're non-bubbling events.
So the if()
statement would look like:
if (event.type == 'mouseenter') {
//...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…