How do I find out which DOM element has the focus?

I would like to find out, in Javascript, which element currently has focus. I've been looking through the DOM and haven't found what I need, yet. Is there a way to do this, and how?

The reason I was looking for this:

I'm trying to make keys like the arrows and enter navigate through a table of input elements. Tab works now, but enter and arrows do not by default it seems. I've got the key handling part set up but now I need to figure out how to move the focus over in the event handling functions.


Use document.activeElement , it is supported in all major browsers.

Previously, if you were trying to find out what form field has focus, you could not. To emulate detection within older browsers, add a "focus" event handler to all fields and record the last-focused field in a variable. Add a "blur" handler to clear the variable upon a blur event for the last-focused field.

Related links:

  • activeElement Browser Compatibility
  • jQuery alternative for document.activeElement

  • As said by JW, you can't find the current focused element, at least in a browser-independent way. But if your app is IE only (some are...), you can find it the following way :

    document.activeElement
    

    EDIT: It looks like IE did not have everything wrong after all, this is part of HTML5 draft and seems to be supported by the latest version of Chrome, Safari and Firefox at least.


    If you can use jQuery, it now supports :focus, just make sure you are using version 1.6+.

    This statement will get you the currently focused element.

    $(":focus")
    

    From: How to select an element that has focus on it with jQuery

    链接地址: http://www.djcxy.com/p/14626.html

    上一篇: 当用户点击它时,使用jQuery隐藏DIV

    下一篇: 如何找出哪个DOM元素具有焦点?