本文介绍了检查输入字段是否在香草JavaScript中有焦点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用jQuery,我可以测试一个输入字段是否具有焦点,如下所示: if($(... ).is(:focus)){
...
}
我如何做到这一点,而不使用jQuery?
解决方案
取自以上答案: Using jQuery, I can test if an input field has focus like so: How do I do that without using jQuery? This question was answered here: Javascript detect if input is focused Taken from the above answer: 这篇关于检查输入字段是否在香草JavaScript中有焦点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
pre $ this === document.activeElement //其中'this'是一个dom对象
if ($("...").is(":focus")) {
...
}
解决方案 this === document.activeElement // where 'this' is a dom object