.focusin()

.focusin( handler )返回类型:jQuery

描述:把一个事件处理函数绑定到“focusin”事件上。

此方法在前两个签名中是.on( "focusin", handler )的简写,在第三个签名中是.trigger( "focusin" )的简写。

当某元素或它里面的任何一个元素获得焦点时,focusin事件被发送到该元素。它与focus事件的区别就在于,它支持侦测父元素上的焦点事件(换句话说,它支持事件冒泡)。

此事件通常与focusout事件一起使用。

补充说明:

  • 因为.focusin()方法是.on( "focusin", handler )的简写,所以可以使用.off( "focusin" )来分离它。

示例:

等待焦点出现在网页上的段落内。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>focusin demo</title>
<style>
span {
display: none;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<p><input type="text"> <span>focusin fire</span></p>
<p><input type="password"> <span>focusin fire</span></p>
<script>
$( "p" ).focusin(function() {
$( this ).find( "span" ).css( "display", "inline" ).fadeOut( 1000 );
});
</script>
</body>
</html>

演示: