.focusin( handler(eventObject) )返回: jQuery
描述: 将一个事件函数绑定到"focusin" 事件。
-
添加的版本: 1.4.focusin( handler(eventObject) )
-
handler(eventObject)类型: Function()每次事件触发时会执行的函数。
-
-
添加的版本: 1.4.3.focusin( [eventData ], handler(eventObject) )
这个方法是 .bind('focusin', handler)
的快捷方式。
focusin
事件会在元素(或者其内部的任何元素)获得焦点时触发。这跟 focus 事件的显著区别在于,它可以在父元素上检测子元素获得焦点的情况(换而言之,它支持事件冒泡)。
此事件通常会和focusout事件一起使用。
例子:
监控页面上段落内获得焦点的情况。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
|