.focusout( handler(eventObject) )返回: jQuery
描述: 将一个事件函数绑定到"focusout" 事件。
-
添加的版本: 1.4.focusout( handler(eventObject) )
-
handler(eventObject)类型: Function()每次事件触发时会执行的函数。
-
-
添加的版本: 1.4.3.focusout( [eventData ], handler(eventObject) )
当传递参数时,这个方法是 .bind('focusout', handler)
的快捷方式,当不传递参数的时候,是.trigger('focusout')
的快捷方式。
This method is a shortcut for .on('focusout', handler)
when passed arguments, and .trigger('focusout')
when no arguments are passed.
focusout
事件会在元素(或者其内部的任何元素)失去焦点时触发。这跟 blur 事件的显著区别在于,它可以在父元素上检测子元素失去焦点的情况(换而言之,它支持事件冒泡)。
这个事件通常会跟 focusin 事件一起使用。
例子:
监视段落内部失去焦点的情况。请注意 focusout 计数和 blur 计数的差异。
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
|