📜  jQuery mouseup()

📅  最后修改于: 2020-11-26 07:08:33             🧑  作者: Mango

jQuery mouseup()

mouseup()方法将事件处理函数添加到HTML元素。在HTML元素上按下鼠标按钮后释放鼠标左键,便会执行此函数。

当您在选定元素上释放鼠标的按下按钮时,将发生mouseup()事件。一旦发生mouseup()事件,它就会执行附加有要运行的函数的mouseup()方法。

此事件通常与mousedown()事件一起使用。

句法:

$(selector).mouseup()

它触发选定元素的mouseup事件。

$(selector).mouseup(function)

它将一个函数添加到mouseup事件。

jQuery mouseup()事件的参数

Parameter Description
Function It is an optional parameter. It executes itself when the mouseup event is triggered.

jQuery mouseup()事件的示例

让我们以一个示例来演示jQuery mouseup()事件。

  
  
  
  
  
  
  

Enter this heading.

输出:

输入此标题。

jQuery mouseup()事件示例2

让我们看一下jQuery mouseup()事件的另一个示例。








Press down and release the mouse left button over this div element

输出:

按下并在此div元素上释放鼠标左键