**mousedown()**
当鼠标指针移动到元素上方,并按下鼠标按键时,会发生 mousedown 事件。
mousedown() 方法触发 mousedown 事件,或规定当发生 mousedown 事件时运行的函数:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<script src="//libs.baidu.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#p1").mousedown(function(){
alert("鼠标在该段落上按下!");
});
});
</script>
</head>
<body>
<p id="p1">这是一个段落</p>
</body>
</html>
```
- 简介
- 安装
- 语法
- 选择器
- 事件
- click
- dblclick
- mouseenter
- mouseleave
- mousedown
- mouseup
- hover
- focus
- blur
- 键盘事件
- 效果
- 隐藏和显示
- 淡入淡出
- 滑动
- 动画
- 停止滑动
- jQuery Callback 方法
- jQuery Chaining
- jQuery_HTML
- jQuery获取
- jQuery设置
- jQuery添加元素
- jQuery删除元素
- jQuery CSS类
- jQuery css() 方法
- jQuery 遍历
- jQuery AJAX
- jQuery AJAX简介
- jQuery - AJAX load() 方法
- jQuery - AJAX get() 和 post() 方法