最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to determine if a field has focus? - Stack Overflow

programmeradmin3浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 10

You 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")

发布评论

评论列表(0)

  1. 暂无评论