JS how to determine whether an element gets the focus:
May be in the actual application of the demand is not much, may also use the following way to judge too straightforward, but the principle is always so, the following is a simple judgment element is the focus of the example, the code is as follows:
$ ("#theid"). Click (function() { var act = document.activeElement.id; if (act== "Theid" ) { alert ("Get Focus"); } Else { alert ("does not get Focus");} );
The above code implements our requirements to determine whether the specified element receives focus.
For Activeelement, you can refer to the activeelement section of JS for a brief introduction .
The original address is: http://www.softwhy.com/forum.php?mod=viewthread&tid=11550
For more information, refer to: http://www.softwhy.com/jquery/
JS how to determine whether an element gets the focus