返回值:jQueryfocusin(handler(eventObject))
为 "focusin" 事件绑定一个处理函数。
-
1.4 新增focusin(handler(eventObject))
handler(eventObject) (Function) 每当事件触发时执行的函数。 -
1.4.3 新增focusin([eventData], handler(eventObject))
eventData (Object) 可选参数,将要传递给事件处理函数的数据映射。handler(eventObject) (Function) 每当事件触发时执行的函数。
示例:
监控页面上段落内获得焦点的情况。
<!DOCTYPE html>
<html>
<head>
<style>span {display:none;}</style>
<script src="jquery.min.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>