`
caleb_520
  • 浏览: 247312 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

JQuery事件

    博客分类:
  • Ajax
阅读更多
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.
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics