📅  最后修改于: 2020-11-26 07:07:37             🧑  作者: Mango
mousedown()方法将事件处理函数添加到HTML元素。当鼠标悬停在HTML元素上时,当按下鼠标左键时,将执行此函数。
此事件通常与mouseup()事件一起使用。
句法:
$(selector).mousedown()
它触发选定元素的mousedown事件。
$(selector).mousedown(function)
它向mousedown事件添加了一个函数。
Parameter | Description |
---|---|
Function | It is an optional parameter. It executes itself when the mousedown event is triggered. |
让我们以一个示例来演示jQuery mousedown()事件。
Enter this heading.
输出:
让我们看一下jQuery mousedown()事件的另一个示例。
Press down the mouse left button over this p element
输出:
在此p元素上按下鼠标左键