当元素获得焦点时如何执行操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当元素获得焦点时如何执行操作相关的知识,希望对你有一定的参考价值。
jQuery('form') .focusin(function(){ jQuery(this).addClass('focused'); }); .focusout(function(){ jQuery(this).removeClass('focused'); }); //However, the preferred way to do this is using // .focus() and .blur() //For when an element loses it's focus use .blur() $('#target').blur(function() { alert('Handler for .blur() called.'); }); //For when an element gains focus use .focus() $('#target').focus(function() { alert('Handler for .focus() called.'); });
以上是关于当元素获得焦点时如何执行操作的主要内容,如果未能解决你的问题,请参考以下文章
ExtJs:当文本字段获得焦点时,在文本字段中手动触发粘贴事件
当条目在 Gtk Python 中获得焦点时如何更改输入语言