**blur()**
当元素失去焦点时,发生 blur 事件。
blur() 方法触发 blur 事件,或规定当发生 blur 事件时运行的函数:
```
<!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(){
$("input").focus(function(){
$(this).css("background-color","#cccccc");
});
$("input").blur(function(){
$(this).css("background-color","#ffffff");
});
});
</script>
</head>
<body>
Name: <input type="text" name="fullname"><br>
Email: <input type="text" name="email">
</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() 方法