检查输入字段是否在vanilla JavaScript中具有焦点

时间:2015-06-08 16:50:19

标签: javascript html input focus

使用jQuery,我可以测试输入字段是否具有焦点如下:

if ($("...").is(":focus")) {
    ...
}

如何在不使用jQuery的情况下执行此操作?

1 个答案:

答案 0 :(得分:14)

这个问题在这里得到了解答:Javascript detect if input is focused

取自上述答案:

this === document.activeElement // where 'this' is a dom object