admin管理员组文章数量:1341422
Very similar to How do I find out which DOM element has the focus? except that I'm not trying find the field that has focus, I just need to know if a particular one already has focus. Is that possible?
Very similar to How do I find out which DOM element has the focus? except that I'm not trying find the field that has focus, I just need to know if a particular one already has focus. Is that possible?
Share Improve this question edited May 23, 2017 at 10:24 CommunityBot 11 silver badge asked Mar 1, 2011 at 1:01 mpenmpen 284k281 gold badges892 silver badges1.3k bronze badges 2- Um, can't you use the solutions in that question to find the focused element and pare it against the element of your chosing? – ide Commented Mar 1, 2011 at 1:04
- @ide: yes. was just leaving work, didn't have time to read through all the solutions. – mpen Commented Mar 1, 2011 at 1:41
2 Answers
Reset to default 10You can try
$("input#id").is(":focus")
Edit: You should read this post if you plan to use it on older browsers. http://forum.jquery./topic/is-the-focus-selector-valid
You can do this rather simply with jQuery: $(el).is(":focus")
本文标签: javascriptHow to determine if a field has focusStack Overflow
版权声明:本文标题:javascript - How to determine if a field has focus? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743655898a2517116.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论