Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have an li:

<li _ngcontent-c21="" class="accordion li" tabindex="0" aria-expanded="true">

Which I have tabbed to. document.activeElement is in fact this element. However,

document.activeElement.matches(':focus')
false

and to make matters even slightly more bizzare:

document.activeElement.focus()
undefined
document.activeElement.matches(':focus')
false

What is going on here? (this is chrome, btw)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
257 views
Welcome To Ask or Share your Answers For Others

1 Answer

If this is happening in the console, the console is in focus, not the element or indeed the page; therefore, elements cannot match :focus as long as the console is in focus. This is not a limitation of Element#matches(), but a side effect of how :focus works — :focus CSS style rules behave the same way.

If you either set a timeout in the console and refocus the page before the timeout expires, or call these functions in a <script> within the page, document.activeElement should match :focus as expected.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...