当元素获得焦点时,触发 focusin 事件。
focusin事件跟focus事件区别在于,他可以在父元素上检测子元素获取焦点的情况。
在每一个匹配元素的focusin事件中绑定的处理函数。
data:focusin([Data], fn) 可传入data供函数fn处理。
fn:在每一个匹配元素的focusin事件中绑定的处理函数。
获得焦点后会触发动画:
<p><input type="text" /> <span>focusout fire</span></p>
<p><input type="password" /> <span>focusout fire</span></p>
$("p").focusin(function() {
$(this).find("span").css('display','inline').fadeOut(1000);
});
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。