JQuery事件

Events

These methods are used to register behaviors to take effect when the user interacts with the browser, and to further manipulate those registered behaviors.

.bind()
Attach a handler to an event for the elements.

.blur()
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.

.change()
Bind an event handler to the "change" JavaScript event, or trigger that event on an element.

.click()
Bind an event handler to the "click" JavaScript event, or trigger that event on an element.

.dblclick()
Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element.


.delegate()
Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.

.mousedown()
Mouse Events Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element.

.mouseenter()
Mouse Events Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.

.mouseleave()
Mouse Events Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.

.mousemove()
Mouse Events Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element.

.mouseout()
Mouse Events Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element.

.mouseover()
Mouse Events Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.

.mouseup()
Mouse Events Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.

你可能感兴趣的:(JavaScript,jquery)