zoukankan      html  css  js  c++  java
  • 常用的 jQuery 事件

    $(document).ready():

    $(document).ready() 方法允许我们在文档完全加载完后执行函数。

    click()

    click() 方法是当按钮点击事件被触发时会调用一个函数。

    dblclick()

    当双击元素时,会发生 dblclick 事件。

    mouseenter()

    当鼠标指针穿过元素时,会发生 mouseenter 事件。

    mouseleave()

    当鼠标指针离开元素时,会发生 mouseleave 事件。

    mousedown()

    当鼠标指针移动到元素上方,并按下鼠标按键时,会发生 mousedown 事件。

    mouseup()

    当在元素上松开鼠标按钮时,会发生 mouseup 事件。

    hover()

    hover()方法用于模拟光标悬停事件。

    focus()

    当元素获得焦点时,发生 focus 事件。

    blur()

    当元素失去焦点时,发生 blur 事件。

  • 相关阅读:
    UVa10779
    UVa10779
    C++ 内存管理学习笔记
    c++ 学习笔记
    AcWing 275 传纸条
    I
    Tree HDU6228
    Lpl and Energy-saving Lamps
    C
    Secret Poems
  • 原文地址:https://www.cnblogs.com/nie5135257/p/9199222.html
Copyright © 2011-2022 走看看